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 +9 -0
- package/bin/install.js +6 -5
- package/package.json +1 -1
- package/skills/awesome-readme/SKILL.md +3 -1
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
|
[](https://opensource.org/licenses/MIT)
|
|
9
|
+
[](https://claude.ai)
|
|
10
|
+
[](https://github.com/google-gemini/gemini-cli)
|
|
11
|
+
[](https://github.com/openai/codex)
|
|
12
|
+
[](https://kiro.dev)
|
|
13
|
+
[](https://cursor.sh)
|
|
14
|
+
[](https://github.com/features/copilot)
|
|
15
|
+
[](https://github.com/opencode-ai/opencode)
|
|
16
|
+
[](https://github.com/sickn33/antigravity-awesome-skills)
|
|
17
|
+
[]( 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
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
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
|
@@ -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
|
+
[](https://opensource.org/licenses/MIT)
|
|
27
29
|
|
|
28
30
|
### 2. Table of Contents
|
|
29
31
|
|