@relipa/ai-flow-kit 0.0.4-beta.0 → 0.0.4-beta.3
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/AIFLOW.md +2 -2
- package/CHANGELOG.md +4 -1
- package/QUICK_START.md +14 -4
- package/README.md +20 -1
- package/bin/aiflow.js +5 -0
- package/custom/skills/investigate-bug/SKILL.md +1 -1
- package/custom/skills/validate-ticket/SKILL.md +1 -1
- package/custom/templates/shared/gate-workflow.md +5 -2
- package/custom/templates/tools/copilot.md +3 -1
- package/custom/templates/tools/cursor.md +3 -1
- package/custom/templates/tools/gemini.md +3 -1
- package/custom/templates/tools/generic.md +3 -1
- package/docs/ai-integration.md +2 -2
- package/docs/architecture.md +1 -1
- package/docs/cli-reference.md +2 -2
- package/docs/developer-overview.md +8 -4
- package/docs/troubleshooting.md +1 -1
- package/package.json +1 -1
- package/scripts/hooks/session-start.js +3 -2
- package/scripts/init.js +460 -491
- package/scripts/prompt.js +1 -1
- package/scripts/use.js +594 -570
package/scripts/prompt.js
CHANGED
|
@@ -3,7 +3,7 @@ const path = require('path');
|
|
|
3
3
|
const chalk = require('chalk');
|
|
4
4
|
|
|
5
5
|
const PROJECT_DIR = process.cwd();
|
|
6
|
-
const CURRENT_FILE = path.join(PROJECT_DIR, '.
|
|
6
|
+
const CURRENT_FILE = path.join(PROJECT_DIR, '.aiflow', 'context', 'current.json');
|
|
7
7
|
const RULES_DIR = path.join(PROJECT_DIR, '.rules');
|
|
8
8
|
|
|
9
9
|
// Prompt templates per task type
|