Source profileQuality 68/100Review permissions

sonichi/sutando/skills/call-diagnostics/SKILL.md

call-diagnostics

Analyze phone call observability data, detect problems, track them across calls, and recommend systematic repairs.

Source repository stars
359
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Analyze phone call observability data, detect problems, track them across calls, and recommend systematic repairs.

Best for

  • After every phone call: run on latest call to detect issues
  • Before making fixes: run --all to see persistent patterns and repair recommendations
  • Never apply ad-hoc patches — check the repair recommendations first to understand if the problem is persistent and what the systematic fix should be

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/sonichi/sutando --skill "skills/call-diagnostics"
Safe inspection promptEditorial

Inspect the Agent Skill "call-diagnostics" from https://github.com/sonichi/sutando/blob/6a8f0fccd32e5aa620a3572c8885544f144bb6fe/skills/call-diagnostics/SKILL.md at commit 6a8f0fccd32e5aa620a3572c8885544f144bb6fe. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Usage

    Review the “Usage” section in the pinned source before continuing.

    Review and apply the “Usage” source section.
  2. 02

    Repair workflow

    ALWAYS follow this workflow. Never skip steps.

    Diagnose: run --all --tracker to see the full picture across all callsIdentify persistent problems: only fix issues that appear across multiple calls. Ignore one-offs.Find root cause: ask "why does this happen?" not "how do I patch this instance?"
  3. 03

    When to use

    After every phone call: run on latest call to detect issues

    After every phone call: run on latest call to detect issuesBefore making fixes: run --all to see persistent patterns and repair recommendationsNever apply ad-hoc patches — check the repair recommendations first to understand if the problem is persistent and what the systematic fix should be
  4. 04

    Detections

    Tool returned too fast (<10ms) — likely error/not-found

    Tool returned too fast (<10ms) — likely error/not-foundHallucination — Gemini claimed action state without tool verificationInline task via work — recording/screenshot/play delegated instead of inline

Permission review

Static risk signals and limitations

Runs scripts

medium · line 8

The documentation asks the agent to run terminal commands or scripts.

python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py # last call

Runs scripts

medium · line 9

The documentation asks the agent to run terminal commands or scripts.

python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py --all # all calls + repair recommendations

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score68/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars359SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
sonichi/sutando
Skill path
skills/call-diagnostics/SKILL.md
Commit
6a8f0fccd32e5aa620a3572c8885544f144bb6fe
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

Call Diagnostics & Repair

Analyze phone call observability data, detect problems, track them across calls, and recommend systematic repairs.

Usage

python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py              # last call
python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py --all        # all calls + repair recommendations
python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py -t           # show timeline
python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py -v           # verbose (show detail)
python3 $CLAUDE_CONFIG_DIR/skills/call-diagnostics/scripts/diagnose.py --all --tracker  # generate HTML tracker + open

When to use

  • After every phone call: run on latest call to detect issues
  • Before making fixes: run --all to see persistent patterns and repair recommendations
  • Never apply ad-hoc patches — check the repair recommendations first to understand if the problem is persistent and what the systematic fix should be

Detections

  • Tool returned too fast (<10ms) — likely error/not-found
  • Hallucination — Gemini claimed action state without tool verification
  • Inline task via work — recording/screenshot/play delegated instead of inline
  • Long delay — >30s between user request and tool execution
  • Repeated failures — same tool failing 3+ times
  • Timestamp lag — caller speech logged after tool that it triggered
  • Wrong tool — Gemini used the wrong tool for the request
  • User correction — user explicitly corrected Sutando's behavior
  • Unmet expectation — user repeated a request (not understood)
  • Auto-invocation — tool called without matching user request

Repair workflow

ALWAYS follow this workflow. Never skip steps.

  1. Diagnose: run --all --tracker to see the full picture across all calls
  2. Identify persistent problems: only fix issues that appear across multiple calls. Ignore one-offs.
  3. Find root cause: ask "why does this happen?" not "how do I patch this instance?"
  4. Make ONE minimal fix: prefer prompt over code, prefer removing code over adding. If >20 LOC, reconsider.
  5. Deploy and track: restart servers, then monitor the next 3+ calls in the tracker
  6. Verify or revert: if the issue count doesn't drop after 2-3 calls, revert and try a different approach
  7. Never modify source code for call tasks: when a user asks to change something during a call (subtitle color, video edit), use runtime tools (ffmpeg, scripts), not code changes

Repair types

When run with --all, analyzes patterns across all calls and recommends:

  • prompt fixes — changes to Gemini system instructions or tool descriptions
  • code fixes — changes to tool implementations (retry logic, return values)
  • architecture fixes — structural changes needed
  • unsolvable — inherent to the platform (e.g. STT timestamp lag)

Each recommendation includes evidence (frequency, trend), priority, and specific fix instructions.

HTML Tracker

--tracker generates /tmp/call-diagnostics-tracker.html with:

  1. Latest call timeline (color-coded)
  2. Issue tracker table (last 5 calls, rows = specific tool issues)
  3. Line chart (errors/warnings over time)
  4. Repair recommendations (prioritized with evidence)

Alternatives

Compare before choosing