knowy-cli 0.1.2 → 0.1.4

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 CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "knowy-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Give your AI a structured project brain",
5
5
  "type": "module",
6
6
  "bin": {
7
+ "knowy-cli": "./bin/knowy.js",
7
8
  "knowy": "./bin/knowy.js",
8
9
  "knowy-mcp": "./bin/knowy-mcp.js"
9
10
  },
package/src/constants.js CHANGED
@@ -16,7 +16,7 @@ export const CORE_FILES = ['principles.md', 'vision.md', 'experience.md'];
16
16
  export const SUBDIRS = ['research', 'design', 'history', TEMPLATES_DIR];
17
17
 
18
18
  export const SKILLS_SOURCE = join(PACKAGE_ROOT, 'skills');
19
- export const SKILLS_TARGET = '.claude/skills/knowy';
19
+ export const SKILLS_TARGET = '.claude/skills';
20
20
  export const SKILL_NAMES = ['knowy-init', 'knowy-update', 'knowy-judge', 'knowy-next'];
21
21
 
22
22
  export const MARKER_START = '<!-- Knowy: Project Knowledge -->';
package/src/i18n.js CHANGED
@@ -73,7 +73,7 @@ const messages = {
73
73
  'cli.init.handshake.created': (file, tool) => ` ✓ Created ${file} (${tool})`,
74
74
  'cli.init.handshake.updated': (file, tool) => ` ✓ Updated ${file} (${tool})`,
75
75
  'cli.init.handshake.appended': (file, tool) => ` ✓ Added to ${file} (${tool})`,
76
- 'cli.init.skills': (n) => ` ✓ Installed ${n} skills to .claude/skills/knowy/`,
76
+ 'cli.init.skills': (n) => ` ✓ Installed ${n} skills to .claude/skills/`,
77
77
  'cli.init.done': '✅ Done!',
78
78
  'cli.init.nextStep': 'Next step: run /knowy init in your AI tool to populate your knowledge files.',
79
79
  'cli.init.selectLanguage': 'Select language for templates:',