@lininn/openflow 0.1.5 → 0.1.7
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 +8 -8
- package/dist/cli/init.js +3 -3
- package/dist/core/skill-generator.js +1 -1
- package/package.json +1 -1
- package/templates/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -48,10 +48,10 @@ Re-generates project skills after upgrading the npm package.
|
|
|
48
48
|
| Command | Phase | Description |
|
|
49
49
|
|---------|-------|-------------|
|
|
50
50
|
| `/openflow proposal` | proposal | Lightweight capture — 3-5 questions to converge on requirements |
|
|
51
|
-
| `/openflow
|
|
52
|
-
| `/openflow
|
|
53
|
-
| `/openflow
|
|
54
|
-
| `/openflow
|
|
51
|
+
| `/openflow brainstorming` | brainstorming | Deep design — multi-round tradeoff exploration |
|
|
52
|
+
| `/openflow spec` | spec | Call OpenSpec to generate specs + auto-translate to plan-ready.md |
|
|
53
|
+
| `/openflow build` | build | Call Superpowers to execute implementation |
|
|
54
|
+
| `/openflow close` | close | Verify consistency + archive |
|
|
55
55
|
|
|
56
56
|
## Dependency Strategy
|
|
57
57
|
|
|
@@ -80,11 +80,11 @@ User Requirements
|
|
|
80
80
|
├── Quick ──→ /openflow proposal ──┐
|
|
81
81
|
│ 3-5 questions │
|
|
82
82
|
│ ├─→ proposal.md
|
|
83
|
-
└── Deep ───→ /openflow
|
|
83
|
+
└── Deep ───→ /openflow brainstorming ─┘ (openspec/changes/<name>/)
|
|
84
84
|
Multi-round exploration
|
|
85
85
|
│
|
|
86
86
|
┌──────────▼───────────┐
|
|
87
|
-
│ /openflow
|
|
87
|
+
│ /openflow spec │
|
|
88
88
|
│ OpenSpec generates │
|
|
89
89
|
└──────────┬───────────┘
|
|
90
90
|
│
|
|
@@ -96,13 +96,13 @@ User Requirements
|
|
|
96
96
|
plan-ready.md
|
|
97
97
|
│
|
|
98
98
|
┌──────────▼───────────┐
|
|
99
|
-
│ /openflow
|
|
99
|
+
│ /openflow build │
|
|
100
100
|
│ Superpowers execution │
|
|
101
101
|
│ TDD + checkpoint │
|
|
102
102
|
└──────────┬───────────┘
|
|
103
103
|
│
|
|
104
104
|
┌──────────▼───────────┐
|
|
105
|
-
│ /openflow
|
|
105
|
+
│ /openflow close │
|
|
106
106
|
│ Verify + archive │
|
|
107
107
|
└──────────────────────┘
|
|
108
108
|
```
|
package/dist/cli/init.js
CHANGED
|
@@ -97,9 +97,9 @@ export const initCommand = new Command('init')
|
|
|
97
97
|
}
|
|
98
98
|
logger.info('Available commands:');
|
|
99
99
|
logger.info(' /openflow proposal Quick requirement capture');
|
|
100
|
-
logger.info(' /openflow
|
|
101
|
-
logger.info(' /openflow
|
|
100
|
+
logger.info(' /openflow brainstorming Deep design exploration');
|
|
101
|
+
logger.info(' /openflow spec Generate specs + translate');
|
|
102
102
|
logger.info(' /openflow build Execute implementation');
|
|
103
|
-
logger.info(' /openflow
|
|
103
|
+
logger.info(' /openflow close Verify + archive');
|
|
104
104
|
logger.blank();
|
|
105
105
|
});
|
|
@@ -98,7 +98,7 @@ name: openflow
|
|
|
98
98
|
description: "OpenSpec + Superpowers 工作流协调器。使用 /openflow proposal 轻量提问、/openflow brainstorming 深度设计、/openflow spec 生成规格、/openflow build 执行实现、/openflow close 验证归档。串联需求规格与工程执行,消除格式鸿沟。"
|
|
99
99
|
---
|
|
100
100
|
|
|
101
|
-
# openflow
|
|
101
|
+
# openflow - 工作流协调器
|
|
102
102
|
|
|
103
103
|
根据用户调用的子命令和项目当前状态,路由到对应阶段。
|
|
104
104
|
|
package/package.json
CHANGED
package/templates/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: openflow
|
|
|
3
3
|
description: "OpenSpec + Superpowers workflow orchestrator. Use /openflow proposal for quick capture, /openflow brainstorming for deep design, /openflow spec to generate specs + translate, /openflow build to execute, /openflow close to verify and archive. Bridges requirements specs and engineering execution."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# openflow
|
|
6
|
+
# openflow - 工作流协调器
|
|
7
7
|
|
|
8
8
|
根据用户调用的子命令和项目当前状态,路由到对应阶段。
|
|
9
9
|
|