@ancleto/spec 0.2.1 → 0.2.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/index.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ancleto/spec",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Orquestador SDD liviano con subagentes optimizados para costo/tokens",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli/index.js CHANGED
@@ -478,7 +478,10 @@ switch (cmd) {
478
478
  break
479
479
  case '--version':
480
480
  case '-v':
481
- console.log('ancleto 0.1.1')
481
+ {
482
+ const pkg = JSON.parse(await readFile(join(ROOT, 'package.json'), 'utf8'))
483
+ console.log(`ancleto ${pkg.version}`)
484
+ }
482
485
  break
483
486
  case '--help':
484
487
  case '-h':