microsoft/amplifier-bundle-skills · Archived

session-debug

Diagnose issues in the current Amplifier session — misconfigured tools, failing operations, unexpected behavior. Use when something isn't working right.

Installation

$ npx skills add microsoft/amplifier-bundle-skills --skill session-debug

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from microsoft/amplifier-bundle-skills · top by installs.

npx skills add microsoft/amplifier-bundle-skills

Browse all from microsoft/amplifier-bundle-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 12
License LICENSE
Default branch main
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,062 B
  • docs SUMMARY.md 175 B

History

  1. First recorded snapshot · 3 installs

SKILL.md

Debug: Session Diagnostics

Help the user diagnose an issue they're encountering in their current Amplifier session.

Issue Description

$ARGUMENTS

If no issue was described, read the session logs and summarize any errors, warnings, or notable issues.

Instructions

  1. Delegate to the session-analyst agent to investigate the current session. The session-analyst has specialized knowledge for safely analyzing large event logs (events.jsonl files can contain lines with 100k+ tokens that will crash other tools). Use the delegate tool to dispatch it with the issue description and any relevant context.
  1. Check session configuration. Review the current session's configuration for common issues:

- Bundle composition problems (missing modules, failed loads) - Provider configuration (missing API keys, wrong endpoints) - Tool availability (tools expected but not mounted) - Hook failures (hooks that errored during lifecycle events)

Session and project settings are typically at: - Project: .amplifier/settings.yaml - User: ~/.amplifier/settings.yaml - Keys: ~/.amplifier/keys.env

  1. Check for common patterns:

- Tool calls returning errors repeatedly - Provider rejections (rate limits, auth failures, model not found) - Module mount failures at startup - Context overflow or compaction issues

  1. Explain what you found in plain language. Avoid jargon. Tell the user:

- What went wrong - Why it likely happened - Concrete steps to fix it

  1. If the issue can't be diagnosed from logs alone, suggest the user:

- Run amplifier doctor for a system health check - Check amplifier module list to verify module availability - Try amplifier --verbose to see detailed startup output