debug-code-task — community debug-code-task, intexuraos, community, ide skills

v1.0.0

À propos de ce Skill

Parfait pour les agents IA ayant besoin de capacités de débogage de code et d'analyse d'exécution de tâches avancées, en particulier ceux qui utilisent Firestore et Firebase-admin. IntexuraOS. AI-Native Platform Where Agents Build the Software

pbuchman pbuchman
[8]
[1]
Updated: 3/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, 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
Review Score
7/11
Quality Score
37
Canonical Locale
en
Detected Body Locale
en

Parfait pour les agents IA ayant besoin de capacités de débogage de code et d'analyse d'exécution de tâches avancées, en particulier ceux qui utilisent Firestore et Firebase-admin. IntexuraOS. AI-Native Platform Where Agents Build the Software

Pourquoi utiliser cette compétence

Permet aux agents d'enquêter sur l'exécution des tâches de code-agent en récupérant les métadonnées et les journaux de Firestore, simplifiant les flux de travail de codage de l'IA et améliorant la productivité grâce à l'utilisation de Node.js, Firebase-admin et de scripts de ligne de commande.

Meilleur pour

Parfait pour les agents IA ayant besoin de capacités de débogage de code et d'analyse d'exécution de tâches avancées, en particulier ceux qui utilisent Firestore et Firebase-admin.

Cas d'utilisation exploitables for debug-code-task

Débogage des problèmes d'exécution des tâches de code-agent
Récupération des métadonnées et des journaux de tâches de Firestore pour analyse
Enquête sur les erreurs et les exceptions lors de l'exécution des tâches

! Sécurité et Limitations

  • Nécessite un accès à Firestore et Firebase-admin
  • Doit être exécuté à partir de la racine du monorepo pour la résolution des modules
  • Limité aux tâches avec des ID extraits des URL ou fournis directement

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

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 debug-code-task?

Parfait pour les agents IA ayant besoin de capacités de débogage de code et d'analyse d'exécution de tâches avancées, en particulier ceux qui utilisent Firestore et Firebase-admin. IntexuraOS. AI-Native Platform Where Agents Build the Software

How do I install debug-code-task?

Run the command: npx killer-skills add pbuchman/intexuraos/debug-code-task. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for debug-code-task?

Key use cases include: Débogage des problèmes d'exécution des tâches de code-agent, Récupération des métadonnées et des journaux de tâches de Firestore pour analyse, Enquête sur les erreurs et les exceptions lors de l'exécution des tâches.

Which IDEs are compatible with debug-code-task?

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 debug-code-task?

Nécessite un accès à Firestore et Firebase-admin. Doit être exécuté à partir de la racine du monorepo pour la résolution des modules. Limité aux tâches avec des ID extraits des URL ou fournis directement.

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 pbuchman/intexuraos/debug-code-task. 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 debug-code-task 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

debug-code-task

Install debug-code-task, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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

Debug Code Task

Investigate code-agent task execution by fetching task metadata and logs from Firestore.

Invocation Detection

Input PatternAction
https://dev.intexuraos.cloud/#/code-tasks/task_*Extract task ID, env=dev
https://intexuraos.cloud/#/code-tasks/task_*Extract task ID, env=prod
task_<uuid> + "debug"/"investigate"/"what went wrong"Use task ID directly

Phase 1: Environment Detection

Parse the URL. Do NOT fetch it — hash-routed SPA returns only shell HTML.

Signaldevprod
URLdev.intexuraos.cloudintexuraos.cloud (no dev.)

Run uname -n to confirm current machine.

Phase 2: Fetch Task Document

Extract task ID from URL hash: /#/code-tasks/{taskId} — everything after the last /.

Run from monorepo root (required for firebase-admin module resolution):

bash
1node .claude/skills/debug-code-task/scripts/fetch-task.cjs <taskId>

Print key fields as a summary table: id, status, linearIssueId, workerLocation, agentType, result.summary, error.

Phase 3: Fetch Log Lines

bash
1node .claude/skills/debug-code-task/scripts/fetch-task.cjs <taskId> --logs-only

Use --logs instead to fetch both task document and logs in one call. Pipe through head -N if user wants a subset. Logs are ordered by sequence number. Each line has format: [sequence] HH:MM:SS.mmm [source] message.

Present log lines to user. Do NOT analyze or speculate about root cause without evidence from the logs.

Phase 4: Orchestrator & Container Logs (optional, on request)

Only needed when Firestore logs are insufficient.

The orchestrator runs on the same machine as the worker. Read workerLocation from the task document (Phase 2) to determine which machine.

Orchestrator Logs

Check uname -n vs task's workerLocation. If on a different machine:

  • From mac-dev → SSH to home-dev: ssh home-dev journalctl -u intexuraos-orchestrator@pbuchman --since ... --until ...
  • From home-dev → cannot SSH to mac-dev. Tell the user.
MachineHow orchestrator runsLog command
home-devsystemd (intexuraos-orchestrator@pbuchman)journalctl -u intexuraos-orchestrator@pbuchman --since "<time>" --until "<time>"
mac-devpnpm --filter orchestrator dev in ~/deploy/intexuraos/Terminal output where the dev process is running. Code not auto-deployed on push.

Derive time window from task document createdAt._seconds and completedAt._seconds:

bash
1date -d @<createdAt._seconds> '+%Y-%m-%d %H:%M:%S' # --since (subtract 1 min) 2date -d @<completedAt._seconds> '+%Y-%m-%d %H:%M:%S' # --until (add 1 min)

Docker Container Logs

Containers are named claude-worker-{taskId}:

bash
1docker logs claude-worker-{taskId}

Only available while the container exists (running or exited but not yet removed). If the container is gone, Firestore log lines (Phase 3) are the only source.

Critical Rules

  1. NEVER WebFetch/curl the SPA URL. Data is in Firestore, not the HTML page.
  2. NEVER run node scripts from /tmp. firebase-admin resolves from monorepo node_modules.
  3. NEVER use node -e for scripts with !. Shell escapes ! — use the script file.
  4. NEVER speculate about what went wrong. Present facts from the task document and logs. Let the user drive analysis.
  5. NEVER present partial investigation results. No hedging ("maybe", "possibly", "there are multiple possible causes", "could be"). Fetch ALL evidence (task document, logs, orchestrator logs if needed) before presenting findings. Present a definitive root cause backed by concrete evidence. If evidence is genuinely insufficient, state exactly what is missing and go fetch it — do not guess. Non-negotiable.

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur