battle-skills 1.0.2 → 1.0.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/README.md CHANGED
@@ -6,6 +6,15 @@
6
6
  _Personal collection of battle-tested agentic skills for Claude Code, Cursor, Gemini CLI, Codex CLI, and more._
7
7
 
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
+ [![Claude Code](https://img.shields.io/badge/Claude%20Code-Anthropic-purple)](https://claude.ai)
10
+ [![Gemini CLI](https://img.shields.io/badge/Gemini%20CLI-Google-blue)](https://github.com/google-gemini/gemini-cli)
11
+ [![Codex CLI](https://img.shields.io/badge/Codex%20CLI-OpenAI-green)](https://github.com/openai/codex)
12
+ [![Kiro](https://img.shields.io/badge/Kiro-AWS-orange)](https://kiro.dev)
13
+ [![Cursor](https://img.shields.io/badge/Cursor-AI%20IDE-orange)](https://cursor.sh)
14
+ [![Copilot](https://img.shields.io/badge/GitHub%20Copilot-VSCode-lightblue)](https://github.com/features/copilot)
15
+ [![OpenCode](https://img.shields.io/badge/OpenCode-CLI-gray)](https://github.com/opencode-ai/opencode)
16
+ [![Antigravity](https://img.shields.io/badge/Antigravity-DeepMind-red)](https://github.com/sickn33/antigravity-awesome-skills)
17
+ [![Buy Me a Book](https://img.shields.io/badge/Buy%20me%20a-book-d13610?logo=buymeacoffee&logoColor=white)]( buymeacoffee.com/tangaiquoc )
9
18
 
10
19
  </div>
11
20
 
package/bin/install.js CHANGED
@@ -152,11 +152,12 @@ function installSkillsIntoTarget(tempDir, target) {
152
152
  const dest = path.join(target, name);
153
153
  copyRecursiveSync(src, dest);
154
154
  });
155
- const repoDocs = path.join(tempDir, "docs");
156
- if (fs.existsSync(repoDocs)) {
157
- const docsDest = path.join(target, "docs");
158
- if (!fs.existsSync(docsDest)) fs.mkdirSync(docsDest, { recursive: true });
159
- copyRecursiveSync(repoDocs, docsDest);
155
+
156
+ // Copy skills_index.json for quick discovery
157
+ const indexSrc = path.join(tempDir, "skills_index.json");
158
+ const indexDest = path.join(target, "skills_index.json");
159
+ if (fs.existsSync(indexSrc)) {
160
+ fs.copyFileSync(indexSrc, indexDest);
160
161
  }
161
162
  }
162
163
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "battle-skills",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Personal collection of battle-tested agentic skills for Claude Code, Cursor, Gemini CLI, Codex CLI, Antigravity and more.",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -23,7 +23,9 @@ An awesome README must have the following exact sections with Emojis:
23
23
 
24
24
  ### 1. Title and Badges & Intro
25
25
 
26
- Start with an Emoji + Header 1. Followed by a catchy description line. You can optionally include badges (CI/CD, Version, License) here.
26
+ Start with an Emoji + Header 1. Followed by a catchy description line. You can optionally include badges (CI/CD, Version, License) here.
27
+ For badges, use this standard format:
28
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
27
29
 
28
30
  ### 2. Table of Contents
29
31