@relipa/ai-flow-kit 0.0.7-beta.2 → 0.0.8-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 +9 -7
- package/bin/aiflow.js +400 -360
- package/bin/ak.js +4 -0
- package/custom/templates/php-plain.md +261 -261
- package/custom/templates/php.md +261 -0
- package/custom/templates/python.md +79 -0
- package/docs/common/AIFLOW.md +1 -1
- package/docs/common/CHANGELOG.md +47 -5
- package/docs/common/QUICK_START.md +82 -50
- package/docs/common/cli-reference.md +161 -196
- package/docs/common/getting-started.md +3 -3
- package/docs/common/troubleshooting.md +7 -7
- package/package.json +2 -1
- package/scripts/checkpoint.js +46 -46
- package/scripts/gitnexus-worker.js +94 -94
- package/scripts/hooks/session-stop.js +55 -55
- package/scripts/init.js +7 -4
- package/scripts/task.js +21 -0
- package/scripts/use.js +880 -625
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ PM writes ticket on Backlog/Jira
|
|
|
57
57
|
▼
|
|
58
58
|
⛩️ GATE 4 — AI Self-Review [AI + DEV]
|
|
59
59
|
AI runs: verification + impact-analysis + checklist
|
|
60
|
-
AI generates: plan/PROJ-33/summary.md
|
|
60
|
+
AI generates: plan/PROJ-33/task-summary.md
|
|
61
61
|
DEV reviews → "APPROVED" or "BUG: [description]"
|
|
62
62
|
│ APPROVED
|
|
63
63
|
▼
|
|
@@ -74,13 +74,13 @@ PM writes ticket on Backlog/Jira
|
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
76
|
# Stable version
|
|
77
|
-
npm install -g ai-flow-kit
|
|
77
|
+
npm install -g @relipa/ai-flow-kit
|
|
78
78
|
|
|
79
79
|
# Beta version (recommend for newest features)
|
|
80
|
-
npm install -g ai-flow-kit@beta
|
|
80
|
+
npm install -g @relipa/ai-flow-kit@beta
|
|
81
81
|
|
|
82
82
|
# Uninstall
|
|
83
|
-
npm uninstall -g ai-flow-kit
|
|
83
|
+
npm uninstall -g @relipa/ai-flow-kit
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
---
|
|
@@ -92,6 +92,7 @@ npm uninstall -g ai-flow-kit
|
|
|
92
92
|
| `aiflow init` | Setup framework, adapters, and multi-AI rules. |
|
|
93
93
|
| `aiflow use <ticket>` | Load ticket context (Backlog/Jira). |
|
|
94
94
|
| `aiflow task` | Manage multiple tasks — pause, switch, resume. |
|
|
95
|
+
| `aiflow task next` | Finalize gate approval and prepare for fresh session. |
|
|
95
96
|
| `aiflow prompt` | Generate tool-optimized prompts (`--env cursor`). |
|
|
96
97
|
| `aiflow sync-skills` | Manually synchronize AI Instruction files with local custom skills. |
|
|
97
98
|
| `aiflow telemetry` | Manage telemetry tracking (enable/disable/status). |
|
|
@@ -123,7 +124,7 @@ aiflow init --framework spring-boot,reactjs --adapter backlog,jira
|
|
|
123
124
|
- `.mcp.json` + Claude Desktop config — MCP adapter
|
|
124
125
|
- `.aiflow/credentials.json` — save API credentials
|
|
125
126
|
|
|
126
|
-
**Supported Frameworks:** `spring-boot`, `laravel`, `php
|
|
127
|
+
**Supported Frameworks:** `spring-boot`, `laravel`, `php`, `nestjs`, `reactjs`, `nextjs`, `vue-nuxt`, `nodejs-express`, `python`, `python-django`, `python-fastapi`
|
|
127
128
|
|
|
128
129
|
**Supported Adapters:** `backlog`, `jira`, `google-sheets`, `figma`
|
|
129
130
|
|
|
@@ -305,12 +306,13 @@ aiflow memory list
|
|
|
305
306
|
|-----------|---------|--------------|
|
|
306
307
|
| `spring-boot` | Java 17+ | `rules/java/` |
|
|
307
308
|
| `laravel` | PHP 8.1+ | `rules/php/` |
|
|
308
|
-
| `php
|
|
309
|
+
| `php` | PHP 8.1+ (no framework) | `rules/php/` |
|
|
309
310
|
| `nestjs` | TypeScript | `rules/javascript/` |
|
|
310
311
|
| `reactjs` | TypeScript | `rules/javascript/` |
|
|
311
312
|
| `nextjs` | TypeScript | `rules/javascript/` |
|
|
312
313
|
| `vue-nuxt` | TypeScript | `rules/javascript/` |
|
|
313
314
|
| `nodejs-express` | JavaScript/TypeScript | `rules/javascript/` |
|
|
315
|
+
| `python` | Python (no framework) | — |
|
|
314
316
|
| `python-django` | Python | — |
|
|
315
317
|
| `python-fastapi` | Python | — |
|
|
316
318
|
|
|
@@ -380,7 +382,7 @@ Then run `aiflow update` or `aiflow sync-skills` to apply.
|
|
|
380
382
|
|
|
381
383
|
**`aiflow` not found:**
|
|
382
384
|
```bash
|
|
383
|
-
npm install -g ai-flow-kit
|
|
385
|
+
npm install -g @relipa/ai-flow-kit
|
|
384
386
|
```
|
|
385
387
|
|
|
386
388
|
**Backlog load fails:**
|