gsd-debug — for Claude Code gsd-debug, AnyoneAIInterviewerBackend, community, for Claude Code, ide skills, $gsd-debug, {{GSD_ARGS}}, AskUserQuestion, request_user_input, header

v1.0.0

このスキルについて

適した場面: Ideal for AI agents that need <codex skill adapter. ローカライズされた概要: AnyoneAIInterviewerBackend <codex skill adapter A. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

機能

<codex skill adapter
A. Skill Invocation
This skill is invoked by mentioning $gsd-debug.
Treat all user text after $gsd-debug as {{GSD ARGS}}.
If no arguments are present, treat {{GSD ARGS}} as empty.

# Core Topics

juaniitos juaniitos
[0]
[0]
Updated: 4/7/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

適した場面: Ideal for AI agents that need <codex skill adapter. ローカライズされた概要: AnyoneAIInterviewerBackend <codex skill adapter A. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

このスキルを使用する理由

推奨ポイント: gsd-debug helps agents <codex skill adapter. AnyoneAIInterviewerBackend <codex skill adapter A. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

おすすめ

適した場面: Ideal for AI agents that need <codex skill adapter.

実現可能なユースケース for gsd-debug

ユースケース: Applying <codex skill adapter
ユースケース: Applying A. Skill Invocation
ユースケース: Applying This skill is invoked by mentioning $gsd-debug

! セキュリティと制限

  • 制約事項: Valid GSD subagent types (use exact names — do not fall back to 'general-purpose'):
  • 制約事項: Requires repository-specific context from the skill documentation
  • 制約事項: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is gsd-debug?

適した場面: Ideal for AI agents that need <codex skill adapter. ローカライズされた概要: AnyoneAIInterviewerBackend <codex skill adapter A. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install gsd-debug?

Run the command: npx killer-skills add juaniitos/AnyoneAIInterviewerBackend/gsd-debug. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for gsd-debug?

Key use cases include: ユースケース: Applying <codex skill adapter, ユースケース: Applying A. Skill Invocation, ユースケース: Applying This skill is invoked by mentioning $gsd-debug.

Which IDEs are compatible with gsd-debug?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for gsd-debug?

制約事項: Valid GSD subagent types (use exact names — do not fall back to 'general-purpose'):. 制約事項: Requires repository-specific context from the skill documentation. 制約事項: Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add juaniitos/AnyoneAIInterviewerBackend/gsd-debug. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use gsd-debug immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

gsd-debug

AnyoneAIInterviewerBackend <codex skill adapter A. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. <codex skill adapter

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

<codex_skill_adapter>

A. Skill Invocation

  • This skill is invoked by mentioning $gsd-debug.
  • Treat all user text after $gsd-debug as {{GSD_ARGS}}.
  • If no arguments are present, treat {{GSD_ARGS}} as empty.

B. AskUserQuestion → request_user_input Mapping

GSD workflows use AskUserQuestion (Claude Code syntax). Translate to Codex request_user_input:

Parameter mapping:

  • headerheader
  • questionquestion
  • Options formatted as "Label" — description{label: "Label", description: "description"}
  • Generate id from header: lowercase, replace spaces with underscores

Batched calls:

  • AskUserQuestion([q1, q2]) → single request_user_input with multiple entries in questions[]

Multi-select workaround:

  • Codex has no multiSelect. Use sequential single-selects, or present a numbered freeform list asking the user to enter comma-separated numbers.

Execute mode fallback:

  • When request_user_input is rejected (Execute mode), present a plain-text numbered list and pick a reasonable default.

C. Task() → spawn_agent Mapping

GSD workflows use Task(...) (Claude Code syntax). Translate to Codex collaboration tools:

Direct mapping:

  • Task(subagent_type="X", prompt="Y")spawn_agent(agent_type="X", message="Y")
  • Task(model="...") → omit (Codex uses per-role config, not inline model selection)
  • fork_context: false by default — GSD agents load their own context via <files_to_read> blocks

Parallel fan-out:

  • Spawn multiple agents → collect agent IDs → wait(ids) for all to complete

Result parsing:

  • Look for structured markers in agent output: CHECKPOINT, PLAN COMPLETE, SUMMARY, etc.
  • close_agent(id) after collecting results from each agent </codex_skill_adapter>
<objective> Debug issues using scientific method with subagent isolation.

Orchestrator role: Gather symptoms, spawn gsd-debugger agent, handle checkpoints, spawn continuations.

Why subagent: Investigation burns context fast (reading files, forming hypotheses, testing). Fresh 200k context per investigation. Main context stays lean for user interaction. </objective>

<available_agent_types> Valid GSD subagent types (use exact names — do not fall back to 'general-purpose'):

  • gsd-debugger — Diagnoses and fixes issues </available_agent_types>
<context> User's issue: {{GSD_ARGS}}

Check for active sessions:

bash
1ls .planning/debug/*.md 2>/dev/null | grep -v resolved | head -5
</context> <process>

0. Initialize Context

bash
1INIT=$(node "/Users/diegocaminor/Documents/proyectos/anyone-ai/final-project/AnyoneAIInterviewerBackend/.codex/get-shit-done/bin/gsd-tools.cjs" state load) 2if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi

Extract commit_docs from init JSON. Resolve debugger model:

bash
1debugger_model=$(node "/Users/diegocaminor/Documents/proyectos/anyone-ai/final-project/AnyoneAIInterviewerBackend/.codex/get-shit-done/bin/gsd-tools.cjs" resolve-model gsd-debugger --raw)

1. Check Active Sessions

If active sessions exist AND no {{GSD_ARGS}}:

  • List sessions with status, hypothesis, next action
  • User picks number to resume OR describes new issue

If {{GSD_ARGS}} provided OR user describes new issue:

  • Continue to symptom gathering

2. Gather Symptoms (if new issue)

Use AskUserQuestion for each:

  1. Expected behavior - What should happen?
  2. Actual behavior - What happens instead?
  3. Error messages - Any errors? (paste or describe)
  4. Timeline - When did this start? Ever worked?
  5. Reproduction - How do you trigger it?

After all gathered, confirm ready to investigate.

3. Spawn gsd-debugger Agent

Fill prompt and spawn:

markdown
1<objective> 2Investigate issue: {slug} 3 4**Summary:** {trigger} 5</objective> 6 7<symptoms> 8expected: {expected} 9actual: {actual} 10errors: {errors} 11reproduction: {reproduction} 12timeline: {timeline} 13</symptoms> 14 15<mode> 16symptoms_prefilled: true 17goal: find_and_fix 18</mode> 19 20<debug_file> 21Create: .planning/debug/{slug}.md 22</debug_file>
Task(
  prompt=filled_prompt,
  subagent_type="gsd-debugger",
  model="{debugger_model}",
  description="Debug {slug}"
)

4. Handle Agent Return

If ## ROOT CAUSE FOUND:

  • Display root cause and evidence summary
  • Offer options:
    • "Fix now" - spawn fix subagent
    • "Plan fix" - suggest $gsd-plan-phase --gaps
    • "Manual fix" - done

If ## CHECKPOINT REACHED:

  • Present checkpoint details to user
  • Get user response
  • If checkpoint type is human-verify:
    • If user confirms fixed: continue so agent can finalize/resolve/archive
    • If user reports issues: continue so agent returns to investigation/fixing
  • Spawn continuation agent (see step 5)

If ## INVESTIGATION INCONCLUSIVE:

  • Show what was checked and eliminated
  • Offer options:
    • "Continue investigating" - spawn new agent with additional context
    • "Manual investigation" - done
    • "Add more context" - gather more symptoms, spawn again

5. Spawn Continuation Agent (After Checkpoint)

When user responds to checkpoint, spawn fresh agent:

markdown
1<objective> 2Continue debugging {slug}. Evidence is in the debug file. 3</objective> 4 5<prior_state> 6<files_to_read> 7- .planning/debug/{slug}.md (Debug session state) 8</files_to_read> 9</prior_state> 10 11<checkpoint_response> 12**Type:** {checkpoint_type} 13**Response:** {user_response} 14</checkpoint_response> 15 16<mode> 17goal: find_and_fix 18</mode>
Task(
  prompt=continuation_prompt,
  subagent_type="gsd-debugger",
  model="{debugger_model}",
  description="Continue debug {slug}"
)
</process>

<success_criteria>

  • Active sessions checked
  • Symptoms gathered (if new)
  • gsd-debugger spawned with context
  • Checkpoints handled correctly
  • Root cause confirmed before fixing </success_criteria>

関連スキル

Looking for an alternative to gsd-debug or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者