takomi 2.1.1 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "takomi",
3
- "version": "2.1.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": {
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('2.0.7');
679
+ .version(packageJson.version);
679
680
 
680
681
  // Per-project setup (backward compatible)
681
682
  program