一键导入
pmp-guide
Use pmp for Pike module resolution, dependency management, and script execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use pmp for Pike module resolution, dependency management, and script execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Navigate template conventions, audit compliance, and guide upgrades for ai-project-template repos
Interactive project setup from the ai-project-template — replaces the static SETUP_GUIDE.md with a guided, multi-step workflow
name: pmp-guide description: Use pmp for Pike module resolution, dependency management, and script execution category: reference tags: [pike, pmp, module-resolution, dependencies, runtime] version: 1.0.0 mu| md|
pmp is the Pike module package manager. Use it instead of raw pike -M for running scripts that depend on project modules.
| Situation | Command |
|---|---|
| Running a Pike script with project modules | pmp run <script> [args] |
| Installing Pike dependencies | pmp install |
| CI / automated test runs | bun run test:pike (wraps pmp run) |
Use pmp run instead of pike -M modules -M harness ... <script>.
pmp reads module path configuration automatically — no need to chain -M flagspmp install fetches and links Pike dependencies (like npm install)pmp v0.5.0 to ~/.pmp/bin/pmp and adds it to PATHpmp run sets up module paths correctly for the full test suitepike -e 'code'pike -M module -M harness for manual troubleshooting# Run a Pike script with automatic module resolution
pmp run tests/pike/run_tests.pike tests/pike
# Install Pike dependencies (run once before tests)
pmp install
# Via npm (what CI uses)
bun run test:pike
pmp resolves modules from:
pike.json / pmp.json project configuration~/.pike/modules/ user-level modulesCI runs pmp install then pmp run tests/pike/run_tests.pike tests/pike. Do not use raw pike -M modules -M harness in CI — use bun run test:pike.