ソース情報
- リポジトリ
- bryancostanich/Cercano
- ソースの最終更新活動
- 2026年7月9日 16:31
- 検出された SKILL.md の言語
- 英語
- スター
- 9
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/bryancostanich/Cercano --skill verification-strategyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Deep multi-source research tool that identifies authoritative sources, systematically searches, analyzes and ranks findings, chases cited references, and compiles a structured report with executive summary, contradiction detection, gap analysis, and follow-up suggestions.
Generate doc comments for exported Go symbols using local AI and write them directly to the file. The host never sees the file contents — Cercano handles the entire read-think-write cycle locally.
Compute the expected result before running any simulation or sweep.
SOC 職業分類に基づく
SKILL.md を表示中
| name | verification-strategy |
| description | Match the test tier to the size of the change. |
You are now operating under Dave's verification protocol. Before running tests, think about WHICH tests to run. Running the full suite when you only changed one function wastes time. Skipping integration tests when you changed an interface misses bugs.
Test the component in isolation. Mock or stub its dependencies. Fastest.
Use when: You're changing internal logic that doesn't cross boundaries. Algorithm changes, data transformations, pure functions, state machine logic.
Don't use when: You've touched an interface, changed data formats, or modified how components communicate.
Test the component in context with its immediate neighbors. Real dependencies, controlled inputs.
Use when: You've changed an interface, modified data flow between components, or touched boundary code. Also use as a sanity check after significant Tier 0 changes.
Don't use when: You need to validate end-to-end behavior at real operating conditions.
Full system test at real operating conditions. Slowest. This is the sign-off test.
Use when: Pre-merge validation, release sign-off, or investigating bugs that only appear under realistic conditions.
Don't use when: You're iterating on a single component — use Tier 0 or 1 and save Tier 2 for when you're ready to validate.