cyberaudit-skill 3.1.2 → 3.1.3
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/dist/cli.js +7 -2
- package/package.json +1 -1
- /package/skills/cyberaudit/commands/{audit:api.md → audit-api.md} +0 -0
- /package/skills/cyberaudit/commands/{audit:help.md → audit-help.md} +0 -0
- /package/skills/cyberaudit/commands/{audit:mobile.md → audit-mobile.md} +0 -0
- /package/skills/cyberaudit/commands/{audit:quick.md → audit-quick.md} +0 -0
- /package/skills/cyberaudit/commands/{audit:report.md → audit-report.md} +0 -0
- /package/skills/cyberaudit/commands/{audit:web.md → audit-web.md} +0 -0
package/dist/cli.js
CHANGED
|
@@ -51,15 +51,20 @@ function installSkill(targetDir, agent, dryRun) {
|
|
|
51
51
|
mkdirSync(targetDir, { recursive: true });
|
|
52
52
|
cpSync(SKILL_SRC, targetDir, { recursive: true });
|
|
53
53
|
console.log(` ✓ Installed at ${targetDir}`);
|
|
54
|
-
// Install command files for opencode
|
|
54
|
+
// Install command + skill files for opencode
|
|
55
55
|
if (agent === "opencode") {
|
|
56
|
-
const
|
|
56
|
+
const opencodeConf = join(homedir(), ".config", "opencode");
|
|
57
|
+
const cmdDir = join(opencodeConf, "commands");
|
|
57
58
|
const cmdSrc = join(PKG_ROOT, "skills", "cyberaudit", "commands");
|
|
58
59
|
if (existsSync(cmdSrc)) {
|
|
59
60
|
mkdirSync(cmdDir, { recursive: true });
|
|
60
61
|
cpSync(cmdSrc, cmdDir, { recursive: true });
|
|
61
62
|
console.log(` ✓ Commands installed to opencode`);
|
|
62
63
|
}
|
|
64
|
+
const skillDir = join(opencodeConf, "skills", "cyberaudit");
|
|
65
|
+
mkdirSync(skillDir, { recursive: true });
|
|
66
|
+
cpSync(SKILL_SRC, skillDir, { recursive: true });
|
|
67
|
+
console.log(` ✓ Skill installed to opencode`);
|
|
63
68
|
}
|
|
64
69
|
return true;
|
|
65
70
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyberaudit-skill",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"description": "Universal security audit skill for AI agents. Install once, audit any web or mobile app. OpenCode, Claude Code, Cursor, Kiro, Gemini — all supported.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|