@relipa/ai-flow-kit 0.0.7 → 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 +7 -6
- 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/CHANGELOG.md +43 -1
- package/docs/common/QUICK_START.md +57 -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
|
@@ -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
|
---
|
|
@@ -124,7 +124,7 @@ aiflow init --framework spring-boot,reactjs --adapter backlog,jira
|
|
|
124
124
|
- `.mcp.json` + Claude Desktop config — MCP adapter
|
|
125
125
|
- `.aiflow/credentials.json` — save API credentials
|
|
126
126
|
|
|
127
|
-
**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`
|
|
128
128
|
|
|
129
129
|
**Supported Adapters:** `backlog`, `jira`, `google-sheets`, `figma`
|
|
130
130
|
|
|
@@ -306,12 +306,13 @@ aiflow memory list
|
|
|
306
306
|
|-----------|---------|--------------|
|
|
307
307
|
| `spring-boot` | Java 17+ | `rules/java/` |
|
|
308
308
|
| `laravel` | PHP 8.1+ | `rules/php/` |
|
|
309
|
-
| `php
|
|
309
|
+
| `php` | PHP 8.1+ (no framework) | `rules/php/` |
|
|
310
310
|
| `nestjs` | TypeScript | `rules/javascript/` |
|
|
311
311
|
| `reactjs` | TypeScript | `rules/javascript/` |
|
|
312
312
|
| `nextjs` | TypeScript | `rules/javascript/` |
|
|
313
313
|
| `vue-nuxt` | TypeScript | `rules/javascript/` |
|
|
314
314
|
| `nodejs-express` | JavaScript/TypeScript | `rules/javascript/` |
|
|
315
|
+
| `python` | Python (no framework) | — |
|
|
315
316
|
| `python-django` | Python | — |
|
|
316
317
|
| `python-fastapi` | Python | — |
|
|
317
318
|
|
|
@@ -381,7 +382,7 @@ Then run `aiflow update` or `aiflow sync-skills` to apply.
|
|
|
381
382
|
|
|
382
383
|
**`aiflow` not found:**
|
|
383
384
|
```bash
|
|
384
|
-
npm install -g ai-flow-kit
|
|
385
|
+
npm install -g @relipa/ai-flow-kit
|
|
385
386
|
```
|
|
386
387
|
|
|
387
388
|
**Backlog load fails:**
|