@cydm/pie 1.0.5 → 1.0.6
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 +11 -0
- package/dist/builtin/extensions/ask-user/index.js +11 -2911
- package/dist/builtin/extensions/changelog/index.js +3 -8
- package/dist/builtin/extensions/deploy/index.js +1 -1
- package/dist/builtin/extensions/document-attachments/index.js +1 -0
- package/dist/builtin/extensions/files/index.js +1 -1
- package/dist/builtin/extensions/init/index.js +1 -3
- package/dist/builtin/extensions/kimi-attachments/index.js +1 -0
- package/dist/builtin/extensions/plan-mode/index.js +30 -97
- package/dist/builtin/extensions/subagent/index.js +26 -10994
- package/dist/builtin/extensions/todo/index.js +11 -2719
- package/dist/chunks/capabilities-FENCOHVA.js +9 -0
- package/dist/chunks/chunk-JYBXCEJJ.js +315 -0
- package/dist/chunks/chunk-MWFBYJOI.js +7334 -0
- package/dist/{builtin/extensions/questionnaire/index.js → chunks/chunk-RID3574D.js} +1453 -1488
- package/dist/chunks/chunk-TBJ25UWB.js +3657 -0
- package/dist/chunks/chunk-TG2EQLX2.js +43 -0
- package/dist/chunks/chunk-XZXLO7YB.js +322 -0
- package/dist/chunks/file-logger-AL5VVZHH.js +22 -0
- package/dist/chunks/src-EGWRDMLB.js +13 -0
- package/dist/chunks/src-WRUACRN2.js +132 -0
- package/dist/cli.js +1108 -15659
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -67,6 +67,17 @@ Pie is not just a chat CLI. It is a compact agent suite with a terminal UI on to
|
|
|
67
67
|
|
|
68
68
|
If you want an agent that feels lightweight but still has serious capability, that is the design target for Pie.
|
|
69
69
|
|
|
70
|
+
## Architecture Position
|
|
71
|
+
|
|
72
|
+
`@cydm/pie` is the CLI product layer in the repo architecture.
|
|
73
|
+
|
|
74
|
+
- `@pie/agent-core` provides runtime semantics and the agent loop
|
|
75
|
+
- `@pie/agent-framework` provides shared application infrastructure such as sessions, skills, and extension protocols
|
|
76
|
+
- `@pie/shared-headless-capabilities` provides shared headless capabilities used across hosts
|
|
77
|
+
- `products/cli` adds terminal bindings, CLI workflows, and host-specific capabilities such as shell execution
|
|
78
|
+
|
|
79
|
+
The CLI should consume shared capability and framework contracts; it should not redefine shared runtime or extension semantics locally.
|
|
80
|
+
|
|
70
81
|
## Interactive Experience
|
|
71
82
|
|
|
72
83
|
Run:
|