takomi 2.1.0 → 2.1.2
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/package.json +3 -3
- package/src/cli.js +2 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "takomi",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "🎯 Stop wrestling with AI. Start building with purpose. The artisan's toolkit for agent workflows, Codex skills, and original Takomi capabilities like 21st.dev integration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"takomi": "
|
|
7
|
+
"takomi": "bin/takomi.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"bin",
|
|
@@ -56,4 +56,4 @@
|
|
|
56
56
|
"typebox": "^1.1.33",
|
|
57
57
|
"typescript": "^6.0.2"
|
|
58
58
|
}
|
|
59
|
-
}
|
|
59
|
+
}
|
package/src/cli.js
CHANGED
|
@@ -45,6 +45,7 @@ import { ensurePiInstalled, ensurePiSubagentsInstalled, launchTakomiHarness, pri
|
|
|
45
45
|
import { installPiHarnessAssets, printPiInstallSummary, syncPiHarnessAssets, validatePiHarnessInstall } from './pi-installer.js';
|
|
46
46
|
import { installBundledSkills, printSkillsInstallSummary, validateSkillsInstall } from './skills-installer.js';
|
|
47
47
|
|
|
48
|
+
const packageJson = await fs.readJson(PATHS.packageJson);
|
|
48
49
|
const program = new Command();
|
|
49
50
|
|
|
50
51
|
// ─────────────────────────────────────────────────────────────────────────────
|
|
@@ -675,7 +676,7 @@ async function harnesses() {
|
|
|
675
676
|
program
|
|
676
677
|
.name('takomi')
|
|
677
678
|
.description('Your AI team. Activated. 🎯')
|
|
678
|
-
.version(
|
|
679
|
+
.version(packageJson.version);
|
|
679
680
|
|
|
680
681
|
// Per-project setup (backward compatible)
|
|
681
682
|
program
|