ソース情報
- リポジトリ
- Vt-mmm/piagent
- ソースの最終更新活動
- 2026年7月25日 02:13
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Vt-mmm/piagent --skill piagent-source-cacheコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | piagent-source-cache |
| description | Cache and inspect user-provided external Git repositories. |
Use this skill when the user provides a GitHub/GitLab/Bitbucket repository as source context for a task.
Keep external source repositories:
Prefer the runtime tool if available:
piagent_source_checkout(repoRef="owner/repo")
If the runtime tool is unavailable, resolve the repo into a local checkout from a platform clone:
PIAGENT_PLATFORM_HOME=/path/to/piagent-platform
bash "$PIAGENT_PLATFORM_HOME/packages/piagent-core/skills/piagent-source-cache/checkout-source-repo.sh" <repo-ref> --path-only
Use the printed path for targeted rg, sed, and file reads.
Read only files relevant to the user request.
If edits are needed, create a separate project/worktree; do not edit the cache.
Cite the source URL in reports when needed.
owner/repogithub.com/owner/repohttps://github.com/owner/repogit@github.com:owner/repo.gitDefault:
${XDG_CACHE_HOME:-$HOME/.cache}/piagent-platform/checkouts/<host>/<owner>/<repo>
Override:
PIAGENT_PLATFORM_HOME=/path/to/piagent-platform
PIAGENT_CHECKOUT_CACHE=/path/to/cache bash "$PIAGENT_PLATFORM_HOME/packages/piagent-core/skills/piagent-source-cache/checkout-source-repo.sh" owner/repo --path-only