Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
whichguy
Profil créateur GitHub

whichguy

Vue par dépôt de 176 skills collectés dans 3 dépôts GitHub.

skills collectés
176
dépôts
3
mis à jour
2026-07-12
explorateur de dépôts

Dépôts et skills représentatifs

next-best-questions
Développeurs de logiciels

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
Autres occupations informatiques

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
Développeurs de logiciels

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
Développeurs de logiciels

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
Développeurs de logiciels

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
Développeurs de logiciels

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
Analystes en études de marché et spécialistes en marketing

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
Développeurs de logiciels

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

2026-07-09
Affichage des 8 principaux skills collectés sur 123 dans ce dépôt.
c-plan
Spécialistes en gestion de projets

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
Développeurs de logiciels

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
Analystes en assurance qualité des logiciels et testeurs

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
Développeurs de logiciels

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
Analystes en assurance qualité des logiciels et testeurs

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
Analystes en assurance qualité des logiciels et testeurs

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
Développeurs de logiciels

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
Analystes en assurance qualité des logiciels et testeurs

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
Affichage des 8 principaux skills collectés sur 46 dans ce dépôt.
c-thru-config
Administrateurs de réseaux et de systèmes informatiques

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
Administrateurs de réseaux et de systèmes informatiques

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
Développeurs de logiciels

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
Analystes en assurance qualité des logiciels et testeurs

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
Spécialistes en gestion de projets

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
Développeurs de logiciels

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
Développeurs de logiciels

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 dépôts affichés sur 3
Tous les dépôts sont affichés