用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/terrylica/cc-skills --skill install命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | install |
| description | Install openwolf npm and run `openwolf init` in cwd. TRIGGERS - install openwolf, openwolf init, set up openwolf. |
| allowed-tools | Read, Bash, Glob, AskUserQuestion |
Install the third-party openwolf npm package and initialize it in the current project (cwd at invocation). The plugin itself contains no openwolf code — it shells out to the published binary.
Self-Evolving Skill: If install steps drift (renamed flags, new prerequisites, npm vs pnpm churn), fix this file. Only update for real, reproducible issues.
| Component | Required | Check |
|---|---|---|
| Node.js 20+ | Yes | node --version |
| npm/pnpm/bun | One | command -v npm pnpm bun |
| PM2 | Optional | command -v pm2 (for the auto-started daemon — degrades gracefully if absent) |
Confirm with the user before initializing in any of these:
.claude/settings.json is auto-managed by another tool that does not preserve foreign hook entries.node --version || { echo "FAIL: Node.js 20+ required"; exit 1; }
PROJECT_ROOT="$(pwd)"
echo "Will install openwolf globally and initialize in: $PROJECT_ROOT"
[ -d "$PROJECT_ROOT/.wolf" ] && echo "NOTE: .wolf/ already exists — init will run in upgrade mode (preserves user data)."
If CLAUDE.md already exists in the project, warn the user that openwolf will prepend a 225-byte snippet to it. Use AskUserQuestion if the project's CLAUDE.md has structured top-of-file metadata that the user might not want disturbed.
Pick the first available package manager:
if command -v pnpm >/dev/null; then pnpm add -g openwolf
elif command -v bun >/dev/null; then bun add -g openwolf
else npm install -g openwolf
fi
openwolf --version || { echo "FAIL: openwolf binary not on PATH after install"; exit 1; }
cd "$PROJECT_ROOT" && openwolf init
This creates .wolf/, merges 6 hooks into .claude/settings.json, writes .claude/rules/openwolf.md, prepends a snippet to CLAUDE.md, registers in ~/.openwolf/registry.json, and (if PM2 is installed) starts daemon openwolf-$(basename "$PROJECT_ROOT").
openwolf status
Confirm: .wolf/ files present, hook scripts present, hooks registered, anatomy file count matches expectations.
Tell the user concisely:
.wolf/ directory at $PROJECT_ROOT/.wolf/ (data the user owns)$PROJECT_ROOT/.claude/settings.json$PROJECT_ROOT/CLAUDE.md$PROJECT_ROOT/.claude/rules/openwolf.md~/.openwolf/registry.jsonopenwolf status reportedTo remove cleanly later: /openwolf:remove.
After this skill completes, before closing the task:
openwolf init mutate something unexpected? — Document under "When NOT to run this".Do NOT defer. The next invocation inherits whatever you leave behind.
user wants to create a macOS Calendar event with sound alarms and paired Reminders, schedule a meeting, RSVP to an invitation, or set reminders.
Park a draft message/text in macOS Notes for the operator to review and edit, then read it back before acting (e.g. before sending to a real person). Notes is the source of truth (AppleScript CRUD, iCloud-synced, provenance-stamped with the Claude Code session UUID); Stickies is a best-effort view-only desktop mirror. Use whenever you draft something a human should confirm/edit before it is sent or committed — messages, replies, announcements, anything outbound. TRIGGERS - park this draft, park the message, hold this draft, let me edit first, draft for my approval, save to notes for review, read back the draft.
Programmatic Firecrawl usage via the public API, academic paper routing, recursive deep research, and raw corpus persistence.
基于 SOC 职业分类