create-takt-sdd 0.10.0 → 0.11.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/dist/i18n.js +32 -18
- package/dist/install.js +15 -10
- package/package.json +1 -1
package/dist/i18n.js
CHANGED
|
@@ -43,16 +43,23 @@ Options:
|
|
|
43
43
|
usageExamples: `
|
|
44
44
|
Installed to: .takt/
|
|
45
45
|
|
|
46
|
-
Usage:
|
|
47
|
-
npm run sdd -- "description of requirements"
|
|
46
|
+
Usage (CC-SDD):
|
|
47
|
+
npm run cc-sdd:full -- "description of requirements"
|
|
48
48
|
|
|
49
|
-
Run individual phases:
|
|
50
|
-
npm run sdd:requirements -- "description of requirements"
|
|
51
|
-
npm run sdd:design -- "feature={feature}"
|
|
52
|
-
npm run sdd:validate-design -- "feature={feature}"
|
|
53
|
-
npm run sdd:tasks -- "feature={feature}"
|
|
54
|
-
npm run sdd:impl -- "feature={feature}"
|
|
55
|
-
npm run sdd:validate-impl -- "feature={feature}"
|
|
49
|
+
Run individual CC-SDD phases:
|
|
50
|
+
npm run cc-sdd:requirements -- "description of requirements"
|
|
51
|
+
npm run cc-sdd:design -- "feature={feature}"
|
|
52
|
+
npm run cc-sdd:validate-design -- "feature={feature}"
|
|
53
|
+
npm run cc-sdd:tasks -- "feature={feature}"
|
|
54
|
+
npm run cc-sdd:impl -- "feature={feature}"
|
|
55
|
+
npm run cc-sdd:validate-impl -- "feature={feature}"
|
|
56
|
+
|
|
57
|
+
Usage (OpenSpec):
|
|
58
|
+
npm run opsx:full -- "description of change"
|
|
59
|
+
npm run opsx:propose -- "change-name"
|
|
60
|
+
npm run opsx:apply -- "change-name"
|
|
61
|
+
npm run opsx:archive -- "change-name"
|
|
62
|
+
npm run opsx:explore`,
|
|
56
63
|
};
|
|
57
64
|
const ja = {
|
|
58
65
|
downloading: "takt-sdd をダウンロード中...",
|
|
@@ -99,16 +106,23 @@ const ja = {
|
|
|
99
106
|
usageExamples: `
|
|
100
107
|
インストール先: .takt/
|
|
101
108
|
|
|
102
|
-
|
|
103
|
-
npm run sdd -- "要件の説明"
|
|
109
|
+
使い方 (CC-SDD):
|
|
110
|
+
npm run cc-sdd:full -- "要件の説明"
|
|
111
|
+
|
|
112
|
+
CC-SDD 各フェーズの個別実行:
|
|
113
|
+
npm run cc-sdd:requirements -- "要件の説明"
|
|
114
|
+
npm run cc-sdd:design -- "feature={feature}"
|
|
115
|
+
npm run cc-sdd:validate-design -- "feature={feature}"
|
|
116
|
+
npm run cc-sdd:tasks -- "feature={feature}"
|
|
117
|
+
npm run cc-sdd:impl -- "feature={feature}"
|
|
118
|
+
npm run cc-sdd:validate-impl -- "feature={feature}"
|
|
104
119
|
|
|
105
|
-
|
|
106
|
-
npm run
|
|
107
|
-
npm run
|
|
108
|
-
npm run
|
|
109
|
-
npm run
|
|
110
|
-
npm run
|
|
111
|
-
npm run sdd:validate-impl -- "feature={feature}"`,
|
|
120
|
+
使い方 (OpenSpec):
|
|
121
|
+
npm run opsx:full -- "変更の説明"
|
|
122
|
+
npm run opsx:propose -- "change-name"
|
|
123
|
+
npm run opsx:apply -- "change-name"
|
|
124
|
+
npm run opsx:archive -- "change-name"
|
|
125
|
+
npm run opsx:explore`,
|
|
112
126
|
};
|
|
113
127
|
const messages = { en, ja };
|
|
114
128
|
export function getMessages(lang) {
|
package/dist/install.js
CHANGED
|
@@ -75,16 +75,21 @@ const SKILL_SYMLINK_TARGETS = [
|
|
|
75
75
|
".codex/skills",
|
|
76
76
|
];
|
|
77
77
|
const SDD_SCRIPTS = {
|
|
78
|
-
"sdd": "takt --pipeline --skip-git --create-worktree no -w sdd -t",
|
|
79
|
-
"sdd:requirements": "takt --pipeline --skip-git --create-worktree no -w sdd-requirements -t",
|
|
80
|
-
"sdd:validate-gap": "takt --pipeline --skip-git --create-worktree no -w sdd-validate-gap -t",
|
|
81
|
-
"sdd:design": "takt --pipeline --skip-git --create-worktree no -w sdd-design -t",
|
|
82
|
-
"sdd:validate-design": "takt --pipeline --skip-git --create-worktree no -w sdd-validate-design -t",
|
|
83
|
-
"sdd:tasks": "takt --pipeline --skip-git --create-worktree no -w sdd-tasks -t",
|
|
84
|
-
"sdd:impl": "takt --pipeline --skip-git --create-worktree no -w sdd-impl -t",
|
|
85
|
-
"sdd:validate-impl": "takt --pipeline --skip-git --create-worktree no -w sdd-validate-impl -t",
|
|
86
|
-
"steering": "takt --pipeline --skip-git --create-worktree no -w steering -t",
|
|
87
|
-
"steering
|
|
78
|
+
"cc-sdd:full": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-full -t",
|
|
79
|
+
"cc-sdd:requirements": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-requirements -t",
|
|
80
|
+
"cc-sdd:validate-gap": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-validate-gap -t",
|
|
81
|
+
"cc-sdd:design": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-design -t",
|
|
82
|
+
"cc-sdd:validate-design": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-validate-design -t",
|
|
83
|
+
"cc-sdd:tasks": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-tasks -t",
|
|
84
|
+
"cc-sdd:impl": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-impl -t",
|
|
85
|
+
"cc-sdd:validate-impl": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-validate-impl -t",
|
|
86
|
+
"cc-sdd:steering": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-steering -t",
|
|
87
|
+
"cc-sdd:steering-custom": "takt --pipeline --skip-git --create-worktree no -w cc-sdd-steering-custom -t",
|
|
88
|
+
"opsx:full": "takt --pipeline --skip-git --create-worktree no -w opsx-full -t",
|
|
89
|
+
"opsx:propose": "takt --pipeline --skip-git --create-worktree no -w opsx-propose -t",
|
|
90
|
+
"opsx:apply": "takt --pipeline --skip-git --create-worktree no -w opsx-apply -t",
|
|
91
|
+
"opsx:archive": "takt --pipeline --skip-git --create-worktree no -w opsx-archive -t",
|
|
92
|
+
"opsx:explore": "takt --skip-git --create-worktree no -w opsx-explore",
|
|
88
93
|
};
|
|
89
94
|
function info(msg) {
|
|
90
95
|
console.log(`\x1b[1;34m==>\x1b[0m ${msg}`);
|