一键导入
install
This skill should be used when the user asks to "install pikiclaw", "build and install", "deploy locally", "update local binary", "release", or "publish".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
This skill should be used when the user asks to "install pikiclaw", "build and install", "deploy locally", "update local binary", "release", or "publish".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
无人值守推广总入口。按 _promo/orchestrate.md 跨所有启用渠道(GitHub / Twitter / Reddit)跑一轮:发现→去重→起草→自我批判→护栏→按 posture 发布→记录→度量。供每日 cron(schedule / loop)调用,也可手动运行。传 "post-approved" 只执行 batch 待发队列。
GitHub 截流。在同领域项目(local coding agent ↔ IM / mobile / remote console)的 feature-request issue 下,自动发现→起草→自我批判→护栏→(按 posture)发布 pikiloom 回复,并记录+度量。话术统一来自 _promo/pitch.md;可由 _promo/orchestrate.md 无人值守驱动。
Reddit 截流。在 coding agent / Claude Code / AI dev tool 的高互动帖下,以 pikiloom builder 身份自动发现→起草→自我批判→护栏→(按 posture)发布英文 peer 评论,并记录+度量。English-first。话术统一来自 _promo/pitch.md;可由 _promo/orchestrate.md 无人值守驱动。
Twitter/X 截流。在 coding/AI agent 工具的高流量推广帖下,自动发现→起草→自我批判→护栏→(按 posture)发布 pikiloom 回复,并记录+度量。内容话术统一来自 _promo/pitch.md;可由 _promo/orchestrate.md 无人值守驱动。
This skill should be used when the user asks to start, restart, keep alive, or inspect the local pikiclaw development service, including `npm run dev`, local debug bot startup, dashboard verification, and dev log checks.
| name | install |
| description | This skill should be used when the user asks to "install pikiclaw", "build and install", "deploy locally", "update local binary", "release", or "publish". |
| version | 8.0.0 |
./scripts/release.sh
This script handles: version bump -> build -> npm link -> verify -> git commit/tag/push -> wait for CI.
If the script fails, diagnose and fix the issue, then re-run it.
After CI creates the GitHub Release, update it with meaningful release notes:
git log v<previous-version>..v<new-version> --oneline --no-merges to collect all commits since the last release.gh release edit v<new-version> --notes "$(cat <<'EOF'
## What's Changed
### New Features
- description of feature
### Bug Fixes
- description of fix
**Full Changelog**: https://github.com/xiaotonng/pikiclaw/compare/v<previous-version>...v<new-version>
EOF
)"
gh release view v<new-version>.npm link creates a global symlink - rebuild with npm run build after code changes.files field in package.json controls what gets published: dist/, LICENSE, README.md..github/workflows/release.yml): builds, publishes to npm, and creates GitHub Release on v* tag push.npm unlink -g pikiclaw.