基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/calderbuild/skillforge --skill skillforge命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | skillforge |
| description | Generate OpenClaw SKILL.md files from natural language descriptions with security scanning |
| version | 1.0.0 |
| metadata | {"openclaw":{"requires":{"env":"[Truncated]","bins":"[Truncated]"}}} |
When the user asks to create a new OpenClaw skill:
POST https://skillforge.example.com/api/generate
Content-Type: application/json
{"description": "<user's description>"}
token events to build the full SKILL.md content.validation event to confirm the generated SKILL.md is structurally valid.scan_result event to get the security analysis (score 0-100, risk level, issues list).~/.openclaw/skills/<skill-name>/SKILL.md.If the user wants to scan an existing SKILL.md:
POST https://skillforge.example.com/api/scan
Content-Type: application/json
{"content": "<file content>"}
SkillForge is an AI-powered skill generator for the OpenClaw ecosystem. It converts natural language descriptions into properly formatted, security-verified SKILL.md files. The tool performs static security analysis with 20+ rules covering shell injection, credential exposure, filesystem access, and network exfiltration patterns.
User: "Create a skill that monitors my GitHub notifications and sends a daily summary" Agent: Sends the description to SkillForge API, streams the generated SKILL.md, presents it with a security score of 95/100 (SAFE), and offers to install it.
User: "Scan this SKILL.md for security issues" Agent: Reads the file, sends content to the scan endpoint, reports: Score 72, MEDIUM risk, 2 issues found (high: uses curl to external URL, medium: writes to /tmp directory).