forked from QuintinShaw/pi-dynamic-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@quintinshaw/pi-dynamic-workflows",
"version": "3.5.1",
"description": "Claude-Code-style dynamic workflows for Pi — fan a task out across 100s of subagents with real model routing, token/cost accounting, resume, git-worktree isolation, an interactive /workflows TUI, and a real /deep-research.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./headless": {
"types": "./dist/headless.d.ts",
"import": "./dist/headless.js"
},
"./headless-control": {
"types": "./dist/headless-control.d.ts",
"import": "./dist/headless-control.js"
},
"./workflow-paths": {
"types": "./dist/workflow-paths.d.ts",
"import": "./dist/workflow-paths.js"
}
},
"files": [
"dist/",
"extensions/",
"skills/",
"src/",
"assets/readme/",
"README.md"
],
"scripts": {
"test": "npm run check && npm run release:check",
"test:unit": "tsx --test tests/**/*.test.ts",
"release:check": "npm run build && npm run docs:check && npm run context:check && npm run test:unit && npm run release:verify",
"release:verify": "tsx scripts/check-workflow-release.ts",
"check": "biome check . && npm run check:scripts",
"check:scripts": "tsc -p tsconfig.scripts.json",
"format": "biome format --write .",
"lint": "biome lint .",
"build": "tsc",
"docs:generate": "tsx scripts/generate-workflow-capabilities.ts",
"docs:check": "tsx scripts/generate-workflow-capabilities.ts --check",
"context:generate": "tsx scripts/generate-workflow-context-measurement.ts",
"context:check": "tsx scripts/generate-workflow-context-measurement.ts --check",
"guidance:generate": "tsx scripts/generate-workflow-guidance-baseline.ts",
"guidance:check": "tsx scripts/generate-workflow-guidance-baseline.ts --check",
"guidance:accept": "tsx scripts/accept-workflow-guidance.ts",
"comprehension": "tsx scripts/run-workflow-comprehension.ts",
"delivery-choice": "tsx scripts/run-workflow-delivery-choice.ts",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run release:check"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"workflow",
"workflows",
"dynamic-workflows",
"orchestration",
"subagents",
"multi-agent",
"agents",
"ai-agents",
"parallel",
"fan-out",
"claude-code",
"deep-research",
"code-review",
"llm"
],
"pi": {
"extensions": [
"extensions/workflow.ts"
],
"skills": [
"skills/workflow-authoring",
"skills/workflow-patterns"
],
"image": "https://raw.githubusercontent.com/QuintinShaw/pi-dynamic-workflows/main/assets/readme/package-cover.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuintinShaw/pi-dynamic-workflows.git"
},
"author": "QuintinShaw",
"contributors": [
"michaelliv (original author)"
],
"license": "MIT",
"dependencies": {
"acorn": "^8.16.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.80.8",
"@earendil-works/pi-tui": ">=0.80.6",
"typebox": "*"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@earendil-works/pi-ai": "latest",
"@earendil-works/pi-coding-agent": "latest",
"@earendil-works/pi-tui": "latest",
"fast-check": "^4.8.0",
"tsx": "latest",
"typebox": "latest",
"typescript": "latest"
}
}