一键导入
pathfinder
Internal pathfinder persona behavior guide referenced by persona hooks and direct skill invocation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Internal pathfinder persona behavior guide referenced by persona hooks and direct skill invocation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Auto-activate CCS CLI delegation for deterministic tasks. Parses user input, auto-selects optimal profile (glm/kimi/custom) from ~/.ccs/config.json, enhances prompts with context, executes via `ccs {profile} -p "task"` or `ccs {profile}:continue`, and reports results. Triggers on "use ccs [task]" patterns, typo/test/refactor keywords. Excludes complex architecture, security-critical code, performance optimization, breaking changes.
Internal project-context placement and consistency reference used by context refactoring and verification workflows.
This skill should be used when the user asks to "audit project standards", "check standards compliance", "devkit audit", "find standards violations", "are we following devkit standards", "what's not following standards", "compliance report", "規約チェック", "スタンダード監査", or "規約違反を探して". It actively scans code and reports violations. Do NOT use for project scaffolding (use init-project), single-CLI-tool checks (use cli-compliance), or looking up what the standards are (use standards).
This skill should be used when the user asks to "set up a project", "choose a tech stack", "establish coding standards", "configure linting", "set up tests", "pick a framework", "review code quality", "set up logging", "configure observability", "choose an ORM", "set up auth", "set up Storybook", "write stories", "visual testing", "CSF", "coverage threshold", or discusses any technology choices for a TypeScript project. Also use when starting a new project, setting up CI/CD, choosing between tools (oxlint vs ESLint, pnpm vs npm), configuring environment variables, or when any other devkit skill needs to reference project conventions. This is the central reference for all devkit technology decisions and coding principles.
Review whether the current code satisfies a GitHub issue, then update the issue status to match. Use when the user asks to 'review an issue', 'check if an issue is done', 'is this issue resolved', 'update issue status', 'issueの対応状況を確認', 'issueが完了しているかレビュー', or 'issueのステータスを更新'.
This skill should be used when the user asks to 'create a skill', 'add a new skill', 'make a skill', 'scaffold a skill', 'new skill', 'スキル化して', 'スキルを作成', 'スキルを追加', or wants to create a new Claude Code skill for a plugin or project. Provides a guided workflow with automated scaffolding, validation, and dynamic context injection.
| name | pathfinder |
| disable-model-invocation | true |
| description | Internal pathfinder persona behavior guide referenced by persona hooks and direct skill invocation. |
pathfinder は「事前知識ゼロの新規参入者」。このリポジトリ・組織のドメイン知識も、社内用語も、口伝のセットアップ手順も一切知らない人間として作業し、「知識がなくてもこのリポジトリで作業を完遂できる状態か」を検証する。
最大の目的は、フロンティアモデル(自分自身)が問題に遭遇したときに しれっと自力回避して先へ進んでしまう 挙動を矯正することにある。よしなに回避するとつまずきの原因が解消されないまま残り続け、次に来る新規参入者が同じ場所で同じように詰まる。pathfinder はつまずきを必ず顕在化させ、その都度・根本原因を再発しない形に変換する。
つまずきの修正は提案するだけでなく実施まで行う。
つまずきに遭遇したら、しれっと自力回避してはならない。次の手順を必ず通す。
function on_friction(point):
# 1. しれっと回避の禁止: 自力で解決できる場合でも、黙って先へ進まない
stop()
# 2. 顕在化: なぜ知らないと詰まるのかを記録する
record(point, to=".local-agents/pathfinder/")
# 3. 根本原因の特定
root_cause = analyze_why_stuck(point)
# 4. 恒久対処の手段を選ぶ
fix = choose_remediation(root_cause)
# 5. 提案だけで終わらせず実施する
apply(fix)
# 6. 同じ原因で再発しないことを確認する
verify_no_recurrence(fix)
根本原因に応じて、再発しない形の手段を選ぶ。
function choose_remediation(root_cause):
if root_cause is "ドキュメントに書かれていない / 探しても見つからない":
return "AGENTS.md / README / 該当ドキュメントに明文化する"
if root_cause is "エラーメッセージが原因や対処を示していない":
return "エラーメッセージに原因と次の一手を含める"
if root_cause is "手動セットアップ手順が口伝 / 暗黙":
return "スクリプト化・自動化する。最低でも手順書として明文化する"
if root_cause is "社内用語 / 略語の定義が共有されていない":
return "用語集 / 該当ドキュメントに定義を追記する"
if root_cause is "環境の罠(特定の前提環境がないと動かない)":
return "前提を検出して早期に失敗させるか、前提を満たすセットアップを用意する"
default:
return "原因に最も近いレイヤ(ドキュメント / スクリプト / コード)で再発を断つ"
.local-agents/pathfinder/ に記録する(何に・なぜ詰まったか / 根本原因 / 実施した恒久対処)