poe-code 3.0.155 → 3.0.157
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/dist/cli/commands/plan.d.ts +3 -0
- package/dist/cli/commands/plan.js +285 -0
- package/dist/cli/commands/plan.js.map +1 -0
- package/dist/cli/program.js +3 -0
- package/dist/cli/program.js.map +1 -1
- package/dist/index.js +2469 -992
- package/dist/index.js.map +4 -4
- package/dist/prompts/github-issue-comment-created.md +1 -0
- package/dist/prompts/github-issue-opened.md +1 -0
- package/dist/prompts/github-pull-request-comment-created.md +1 -0
- package/dist/prompts/github-pull-request-opened.md +2 -0
- package/dist/prompts/github-pull-request-synchronized.md +2 -0
- package/dist/providers/poe-agent.js.map +2 -2
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poe-code",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.157",
|
|
4
4
|
"description": "CLI tool to configure Poe API for developer workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -103,11 +103,13 @@
|
|
|
103
103
|
"@poe-code/cached-resource": "*",
|
|
104
104
|
"@poe-code/cmdkit": "*",
|
|
105
105
|
"@poe-code/cmdkit-schema": "*",
|
|
106
|
+
"@poe-code/config-extends": "*",
|
|
106
107
|
"@poe-code/config-mutations": "*",
|
|
107
108
|
"@poe-code/design-system": "*",
|
|
108
109
|
"@poe-code/e2e-docker-test-runner": "*",
|
|
109
110
|
"@poe-code/experiment-loop": "*",
|
|
110
111
|
"@poe-code/github-workflows": "*",
|
|
112
|
+
"@poe-code/plan-browser": "*",
|
|
111
113
|
"@poe-code/pipeline": "*",
|
|
112
114
|
"@poe-code/poe-acp-client": "*",
|
|
113
115
|
"@poe-code/poe-agent": "*",
|