cyberaudit-skill 3.1.0 → 3.1.2
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 +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -7,6 +7,7 @@ import { join, dirname } from "path";
|
|
|
7
7
|
import { fileURLToPath } from "url";
|
|
8
8
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
9
9
|
const PKG_ROOT = join(__dirname, "..");
|
|
10
|
+
const PKG = JSON.parse(readFileSync(join(PKG_ROOT, "package.json"), "utf-8"));
|
|
10
11
|
const SKILL_SRC = join(PKG_ROOT, "skills", "cyberaudit");
|
|
11
12
|
const AGENT_TARGETS = {
|
|
12
13
|
"opencode": [join(homedir(), ".agents", "skills", "cyberaudit")],
|
|
@@ -107,7 +108,7 @@ async function main() {
|
|
|
107
108
|
program
|
|
108
109
|
.name("cyberaudit-skill")
|
|
109
110
|
.description("CyberAudit Skill — universal security audit skill for AI agents")
|
|
110
|
-
.version(
|
|
111
|
+
.version(PKG.version);
|
|
111
112
|
program
|
|
112
113
|
.command("install")
|
|
113
114
|
.description("Install CyberAudit Skill for AI agent(s)")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cyberaudit-skill",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2",
|
|
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",
|