Skip to main content
Manusで任意のスキルを実行
ワンクリックで
whichguy
GitHub クリエイタープロフィール

whichguy

3 件の GitHub リポジトリにある 176 件の収集済み skills をリポジトリ単位で表示します。

収集済み skills
176
リポジトリ
3
更新
2026-07-12
リポジトリエクスプローラー

リポジトリと代表的な skills

next-best-questions
ソフトウェア開発者

Use when a problem or request is underspecified and you need to decide WHAT to clarify before doing the work — the NEXT-BEST QUESTIONS to answer, ranked. Interrogates the prompt into candidate questions, projects plausible answers with probabilities, estimates each question's value of information (how much the answer would change the recommended plan, weighted by likelihood and stakes), discards low-value/redundant ones, and keeps generating until a diverse bucket of high-value questions is filled. Reports a ranked list with recommendations (pre-answer / assume-default) using role-specialized local Ollama models. Reports only — it does not ask the user or answer the questions itself. Triggers: "what should I clarify", "what questions matter here", "is this spec complete", "what am I missing before I start".

2026-07-12
nbq-improve
その他コンピュータ職

Use to run one improvement iteration on the next-best-questions skill: review its learnings journal, research opportunities, pre-register a cost-aware experiment, build off-default, evaluate Δresult AND Δcost, and journal the verdict either way. Triggers: 'improve nbq', 'run the nbq loop', 'next-best-questions iteration'. There are NO scripts; this protocol is agent-executed.

2026-07-12
ask
ソフトウェア開発者

Prompt any model or alias via "ask <model> <question>". Resolves short names (deepseek, kimi, qwen, glm) to full model IDs. Captures session IDs for follow-up questions. Comparison mode: "ask deepseek kimi <question>" dispatches multiple models in parallel. Each call is a full Hermes agent with tools and multi-turn reasoning. Replies inline with a model badge.

2026-07-12
devloop
ソフトウェア開発者

Autonomous end-to-end build/debug engine. Use it when asked to build, implement, fix, or debug a module/feature: it runs the WHOLE loop unattended — drafts a checkable Definition of Done, fail-closed gates it (vague or ambiguous requests come back with the blocking questions instead of guesses), generates tests, then loops implement -> lint -> evidence until coverage + two distinct-model judges + real exit codes + a whole-suite regression gate all pass — and on COMPLETE AUTO-MERGES the work into the target repo's current branch (no repo named = a fresh workspace under the write-safe root is the deliverable). Prefer this over the `dev` skill for any multi-file task whose outcome should be verified, merged code rather than role-by-role assistance. NOT for trivial one-shot asks (a quick answer, a one-line edit, running a command) — just do those directly. Run: `devloop "<request>" [--repo PATH]` (or python3 ${HERMES_HOME}/skills/software-development/devloop/scripts/devloop_cli.py) — see "How to run".

2026-07-09
resumable-script
ソフトウェア開発者

An LLM authors a JSON/YAML workflow spec (states, prompts, routing, failure policy); a durable interpreter runs it, passing state from step to step, with suspend/resume, human gates, and replay that never re-runs completed steps. Use when an LLM should define-and-run a multi-step workflow that must pause for a human (approve, decide, fix something) and resume later, survive a crash and continue exactly once, or route declaratively on step errors. Rides a durable-execution-lite engine (append-only journal, deterministic replay). Triggers: LLM-authored workflow, workflow spec, prompt routing, durable resume, resumable script, pause and resume, checkpoint and continue, don't re-run completed steps.

2026-07-09
session-wiki-capture
ソフトウェア開発者

Cron job that reviews Hermes conversation history and captures durable knowledge into the wiki. Handles triage (SKIP/NOTE/PAGE), Slack-session cleanup, and post-capture lint.

2026-07-09
usaw-event-info
市場調査アナリスト・マーケティングスペシャリスト

Use when looking up USAW weightlifting event information — national events, local meets, registration, qualifying totals, schedules, results, live stream, tickets, or event policies. Knows the URL patterns, data locations, and info types across usaweightlifting.org and Sport80.

2026-07-09
versioning-hermes-home
ソフトウェア開発者

Safely version a live HERMES_HOME to git/GitHub: fail-closed gitignore, secret gating, runtime-state exclusion, watchdog backup cron.

2026-07-09
このリポジトリの収集済み skills 123 件中、上位 8 件を表示しています。
c-plan
プロジェクト管理専門家

Resolve ambiguous user prompts by choosing whether to answer now, answer with assumptions, ask 1–2 high-value clarification questions, replan, or stop. Use when the best response depends on hidden intent, audience, scope, constraints, risk, output format, or desired depth.

2026-06-18
schedule-plan-tasks
ソフトウェア開発者

Analyzes an approved plan and decomposes it into a dependency-ordered task graph via a two-phase TaskCreate and TaskUpdate pass. Detects linear DEPENDS ON chains (shared worktree), identifies independent work streams (parallelized), and executes the full worktree-isolated run. Also handles Branch B (learnings from session context). **AUTOMATICALLY INVOKE** only when: - The PostToolUse(ExitPlanMode) hook has injected its schedule-tasks nudge in this turn (i.e., the user just approved a plan), AND the user has not signaled they want to defer execution. - /schedule-plan-tasks is invoked explicitly. - The user explicitly says "schedule tasks", "execute the plan", "decompose plan into tasks" — only when a plan exists at ~/.claude/plans/*.md AND ExitPlanMode has already been approved in this session. **DO NOT auto-invoke** while plan mode is active, while review-plan is iterating, or before the user has approved ExitPlanMode. **References:** JIT-loaded from `${CLAUDE_SKILL_DIR}/references/`

2026-06-18
test-prompt-harness
ソフトウェア品質保証アナリスト・テスター

Headless `claude -p` test harness V2 — runs a fixture's literal prompt through real Claude sessions (k replicas in parallel), grades each replica on five string views plus structured tool-call / tool-result / run-health / LLM-judge condition families, then quorum-aggregates row verdicts. Use when an LLM-driven prompt needs behavioral verification beyond contract-string parser tests.

2026-06-18
review-plan
ソフトウェア開発者

Universal plan review: senior-engineer directive + deterministic count-based severity rule. AUTOMATICALLY INVOKE when: - MANDATORY_PRE_EXIT_PLAN directive applies (before ExitPlanMode) - User says "review plan", "check plan", "plan ready?" - Any plan file needs review NOT for: Code review of existing files (use /gas-suite:gas-review or /review-fix)

2026-06-18
prompt-align
ソフトウェア品質保証アナリスト・テスター

Compare an agent or skill prompt against its test harness skill for phase-model, skip-condition, and wiring consistency. Reports mismatches and identifies which file is authoritative.

2026-05-10
prompt-migrate
ソフトウェア品質保証アナリスト・テスター

TDD-based prompt migration — given a target agent/skill prompt and a remediation list from prompt-audit, writes failing tests first, then updates the prompt to make them pass, and commits both in a single atomic commit.

2026-05-10
prompt-refine
ソフトウェア開発者

Full prompt-improvement workflow — runs prompt-audit to find inconsistencies, presents a remediation plan, then runs prompt-migrate to apply fixes and prompt-align to verify harness consistency. Use for any agent or skill prompt that needs structural repair.

2026-05-10
prompt-audit
ソフトウェア品質保証アナリスト・テスター

Audit an agent or skill prompt file for internal inconsistencies (phase numbering, behavioral contracts, terminology, stale references). Produces a Q&A with info-gain scores, a learnings section, and a remediation list. Use before any prompt migration.

2026-05-10
このリポジトリの収集済み skills 46 件中、上位 8 件を表示しています。
c-thru-config
ネットワーク・コンピュータシステム管理者

Unified c-thru configuration: diagnose the active setup, resolve what a capability alias maps to, switch connectivity modes, remap per-capability models, validate the config, or reload the running proxy. Subcommands: diag [--verbose] | resolve <cap> | mode [<mode>] [--reload] | remap <cap> <model> [--tier <tier>] [--reload] | set-cloud-best-model <cap> <model> [--tier <tier>] [--reload] | set-local-best-model <cap> <model> [--tier <tier>] [--reload] | route <model> <backend> [--reload] | backend <name> <url> [--kind <kind>] [--auth-env <VAR>] [--reload] | agent list | agent set <agent> <cap> [--reload] | agent pin <agent> <model> [--reload] | agent reset <agent> [--reload] | alias list | alias set <pattern> <cap> [--reload] | alias remove <pattern> [--reload] | override list | override set <from> <to> [--reload] | override remove <from> [--reload] | validate | reload | restart [--force]

2026-06-14
c-thru-control
ネットワーク・コンピュータシステム管理者

Agentic infrastructure control for c-thru. Interrogate the proxy for hardware status, active models, and connectivity health. Dynamically switch routing modes (connected, offline, etc.) using natural language prompts.

2026-06-13
logical-gearbox
ソフトウェア開発者

Codifies the visual 'ASCII Gearbox' format for debugging agent logic. Used to trace state transitions, logic loops, and evidence grounding.

2026-06-11
review-fix
ソフトウェア品質保証アナリスト・テスター

Iterative review-fix loop: routes each file to the appropriate reviewer (code-reviewer, gas-code-review, gas-ui-review, gas-gmail-cards), applies Fix blocks, rechecks until clean (max 5 rounds), then commits/PRs. commit_mode="pr" (default): commit + push + PR + squash merge + delete branch. commit_mode="commit": commit only (POST_IMPLEMENT pipeline). Git fallback: WIP → last commit when target_files empty. **AUTOMATICALLY INVOKE** after implementing features, fixing bugs, before committing, or after plan implementation completes (user approves + all changes made). **STRONGLY RECOMMENDED** before merging to main, after refactoring, and when code-reviewer returns NEEDS_REVISION. Trigger phrases: "review and fix", "polish this", "clean this up", "make sure this is good", "before committing", "before merging", "loop until clean".

2026-06-11
review-plan
プロジェクト管理専門家

Universal plan review: 3 layers (general quality, code change quality, ecosystem specialization). Invokes gas-plan for GAS plans or node-plan for Node.js/TypeScript plans, conditionally based on detected patterns. AUTOMATICALLY INVOKE when: - MANDATORY_PRE_EXIT_PLAN directive applies (before ExitPlanMode) - User says "review plan", "check plan", "plan ready?" - Any plan file needs review (GAS or non-GAS) NOT for: Code review of existing files (use /gas-review or /review-fix)

2026-06-11
update-model-research
ソフトウェア開発者

Research and update docs/local-model-prompt-techniques.md with latest community findings, Ollama version-specific fixes, and authoritative corrections for all local models in config/model-map.json. Scope: client-observable behavior through the Ollama API — prompting patterns, request parameters, response format, tool-calling behavior, dangers, and best practices. Internal server mechanics and deployment configuration are out of scope unless they directly explain a client-visible API behavior. Spawns parallel research agents per model family, applies a strict citation and confidence standard, and writes a diff-summary of changes. Invoked as /update-model-research [--model <family>] [--section <topic>]

2026-06-11
c-thru-plan
ソフトウェア開発者

Agentic plan/wave orchestrator. Breaks any task into a wave-based execution plan, drives waves to completion, and tracks state in ${TMPDIR:-/tmp}/c-thru/<repo>/<slug>/. Invoked as /c-thru-plan <user intent>.

2026-05-08
3 件中 3 件のリポジトリを表示
すべてのリポジトリを表示しました
whichguy Agent Skills | SkillsMP