@introspection-ai/pi-recipes 0.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +116 -0
- package/dist/child-agent.d.ts +40 -0
- package/dist/child-agent.js +235 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.js +479 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +7 -0
- package/dist/pi-extension.d.ts +26 -0
- package/dist/pi-extension.js +809 -0
- package/dist/recipe-agent.d.ts +51 -0
- package/dist/recipe-agent.js +359 -0
- package/dist/recipe-dev.d.ts +30 -0
- package/dist/recipe-dev.js +180 -0
- package/dist/recipe-package.d.ts +38 -0
- package/dist/recipe-package.js +231 -0
- package/dist/recipe-publish.d.ts +30 -0
- package/dist/recipe-publish.js +192 -0
- package/dist/recipe-store.d.ts +66 -0
- package/dist/recipe-store.js +691 -0
- package/docs/pi-extension.md +413 -0
- package/docs/recipe-cli.md +529 -0
- package/docs/recipe-flow.md +148 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@introspection-ai/pi-recipes",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "Local session tooling for package-based workflows.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"packageManager": "pnpm@10.33.0",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/child-agent.d.ts",
|
|
10
|
+
"dist/child-agent.js",
|
|
11
|
+
"dist/cli.d.ts",
|
|
12
|
+
"dist/cli.js",
|
|
13
|
+
"dist/index.d.ts",
|
|
14
|
+
"dist/index.js",
|
|
15
|
+
"dist/pi-extension.d.ts",
|
|
16
|
+
"dist/pi-extension.js",
|
|
17
|
+
"dist/recipe-dev.d.ts",
|
|
18
|
+
"dist/recipe-dev.js",
|
|
19
|
+
"dist/recipe-agent.d.ts",
|
|
20
|
+
"dist/recipe-agent.js",
|
|
21
|
+
"dist/recipe-package.d.ts",
|
|
22
|
+
"dist/recipe-package.js",
|
|
23
|
+
"dist/recipe-publish.d.ts",
|
|
24
|
+
"dist/recipe-publish.js",
|
|
25
|
+
"dist/recipe-store.d.ts",
|
|
26
|
+
"dist/recipe-store.js",
|
|
27
|
+
"docs",
|
|
28
|
+
"README.md",
|
|
29
|
+
"package.json"
|
|
30
|
+
],
|
|
31
|
+
"bin": {
|
|
32
|
+
"recipes": "dist/cli.js"
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+ssh://git@github.com/introspection-org/pi-recipes.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/introspection-org/pi-recipes/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/introspection-org/pi-recipes#readme",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public",
|
|
44
|
+
"tag": "latest"
|
|
45
|
+
},
|
|
46
|
+
"exports": {
|
|
47
|
+
".": {
|
|
48
|
+
"types": "./dist/index.d.ts",
|
|
49
|
+
"import": "./dist/index.js"
|
|
50
|
+
},
|
|
51
|
+
"./pi-extension": {
|
|
52
|
+
"types": "./dist/pi-extension.d.ts",
|
|
53
|
+
"import": "./dist/pi-extension.js"
|
|
54
|
+
},
|
|
55
|
+
"./recipe-store": {
|
|
56
|
+
"types": "./dist/recipe-store.d.ts",
|
|
57
|
+
"import": "./dist/recipe-store.js"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"pi": {
|
|
61
|
+
"extensions": [
|
|
62
|
+
"./dist/pi-extension.js"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "rm -rf dist && tsc && chmod +x dist/cli.js",
|
|
67
|
+
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build",
|
|
68
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
|
|
69
|
+
"test": "vitest run",
|
|
70
|
+
"clean": "rm -rf dist .turbo node_modules"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"yaml": "^2.9.0"
|
|
74
|
+
},
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"@earendil-works/pi-agent-core": "*",
|
|
77
|
+
"@earendil-works/pi-ai": "*",
|
|
78
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
79
|
+
"@earendil-works/pi-tui": "*",
|
|
80
|
+
"typebox": "*"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@earendil-works/pi-agent-core": "0.75.4",
|
|
84
|
+
"@earendil-works/pi-ai": "0.75.4",
|
|
85
|
+
"@earendil-works/pi-coding-agent": "0.75.4",
|
|
86
|
+
"@earendil-works/pi-tui": "0.75.5",
|
|
87
|
+
"@types/node": "^22.10.0",
|
|
88
|
+
"typebox": "^1.0.56",
|
|
89
|
+
"typescript": "^5.7.3",
|
|
90
|
+
"vitest": "^4.0.18"
|
|
91
|
+
}
|
|
92
|
+
}
|