@axiomatic-labs/claudeflow 2.12.146 → 2.12.147
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.
|
@@ -35,7 +35,12 @@ function run(userArgs) {
|
|
|
35
35
|
|
|
36
36
|
const args = [];
|
|
37
37
|
if (promptPath && !userAlreadySetAppend(userArgs)) {
|
|
38
|
-
|
|
38
|
+
// Prefer a path relative to cwd so the flag looks identical to what
|
|
39
|
+
// the user would type manually. Fall back to absolute when the
|
|
40
|
+
// relative form would escape cwd with many `..` segments.
|
|
41
|
+
const rel = path.relative(cwd, promptPath);
|
|
42
|
+
const useRel = rel && !rel.startsWith('..' + path.sep) && rel !== '..';
|
|
43
|
+
args.push('--append-system-prompt-file', useRel ? rel : promptPath);
|
|
39
44
|
}
|
|
40
45
|
args.push(...userArgs);
|
|
41
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/claudeflow",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.147",
|
|
4
4
|
"description": "Claudeflow — AI-powered development toolkit for Claude Code. Skills, agents, hooks, and quality gates that ship production apps.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claudeflow": "./bin/cli.js"
|