@tanagram/cli 0.5.51 → 0.5.53

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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/install.js CHANGED
@@ -135,19 +135,16 @@ function installClaudeSkill() {
135
135
  return;
136
136
  }
137
137
 
138
- console.error('Installing Tanagram skill for Claude Code...');
138
+ console.error('Installing Tanagram skill...');
139
139
 
140
140
  try {
141
141
  const skillsSourceDir = path.join(__dirname, 'skills', 'tanagram');
142
142
  const skillsTargetDir = path.join(os.homedir(), '.claude', 'skills', 'tanagram');
143
143
 
144
- // Check if this is a first-time install (skill didn't exist before)
145
144
  const isFirstTime = !fs.existsSync(path.join(skillsTargetDir, 'SKILL.md'));
146
145
 
147
- // Create target directory
148
146
  fs.mkdirSync(skillsTargetDir, { recursive: true });
149
147
 
150
- // Copy skill files
151
148
  const files = ['SKILL.md'];
152
149
  for (const file of files) {
153
150
  const srcPath = path.join(skillsSourceDir, file);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanagram/cli",
3
- "version": "0.5.51",
3
+ "version": "0.5.53",
4
4
  "description": "Tanagram - Catch sloppy code before it ships",
5
5
  "main": "index.js",
6
6
  "bin": {