pi-soly 2.2.0 → 2.2.1
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/built-in-rules/release-discipline.md +105 -0
- package/commands/_helpers.ts +87 -0
- package/commands/artifacts.ts +86 -0
- package/commands/docs.ts +74 -0
- package/commands/rules.ts +187 -0
- package/commands/rulewizard.ts +43 -0
- package/commands/soly.ts +560 -0
- package/commands/why.ts +106 -0
- package/commands.ts +36 -1231
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-soly",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Project management + workflow framework for pi-coding-agent. Plans, state, MANDATORY rules, self-review, multi-question picker, native footer + welcome chrome — one npm install, zero config. The LLM drives the workflow inline via the soly_workflow tool — no external subagent plugin.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"files": [
|
|
31
31
|
"README.md",
|
|
32
32
|
"commands.ts",
|
|
33
|
+
"commands",
|
|
33
34
|
"config.ts",
|
|
34
35
|
"context-manager.ts",
|
|
35
36
|
"core.ts",
|