Package Exports
- @htekdev/actions-debugger
Readme
@htekdev/actions-debugger
65+ real GitHub Actions errors, queryable by agents. MCP server + Copilot skills + error database.
Stop debugging the same CI failures over and over. This repo packages 65+ real-world GitHub Actions error scenarios — with regex-matchable patterns, root causes, and copy-paste fixes — into formats that both humans and AI agents can consume.
What's Inside
errors/ → Structured YAML error database (65+ entries)
src/ → MCP server (TypeScript + @modelcontextprotocol/sdk)
.github/skills/ → Copilot CLI skills for CI debugging
.github/agents/ → Copilot agent definitionQuick Start
As an MCP Server (Claude Desktop, Copilot CLI, Cursor, etc.)
npx @htekdev/actions-debuggerAdd to your MCP client config:
{
"mcpServers": {
"actions-debugger": {
"command": "npx",
"args": ["@htekdev/actions-debugger"]
}
}
}Client config locations:
- Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) /%APPDATA%\Claude\claude_desktop_config.json(Windows) - Cursor:
.cursor/mcp.json(project) or~/.cursor/mcp.json(global) - VS Code (Copilot Chat):
.vscode/mcp.json - Copilot CLI:
.github/mcp.json(repo-level) - Windsurf:
~/.codeium/windsurf/mcp_config.json
As a Copilot CLI Skill (No MCP Required)
Copy .github/skills/actions-debugging/SKILL.md to your repo's .github/skills/ directory. Reference it in your agent:
> **Skill reference:** For CI debugging, use the `actions-debugging` skill.Programmatic (npm Package)
import { loadErrorDatabase, lookupError, diagnoseWorkflow } from "@htekdev/actions-debugger";
const db = await loadErrorDatabase();
// Lookup by error message
const matches = lookupError(db, "Permission to org/repo.git denied");
console.log(matches[0].fix);
// Analyze a workflow
const issues = diagnoseWorkflow(db, workflowYamlString);MCP Tools
| Tool | Description |
|---|---|
lookup_error |
Match an error message against 65+ known issues |
diagnose_workflow |
Static analysis of workflow YAML for common mistakes |
suggest_fix |
Contextual fix suggestions from error context |
search_errors |
Full-text search by keyword, category, severity |
list_categories |
Browse error categories with counts |
Error Categories
| Category | Description |
|---|---|
yaml-syntax |
YAML validation, key typos, expression errors |
silent-failures |
No error shown, but wrong behavior |
runner-environment |
Runner issues, disk space, Docker, PATH |
permissions-auth |
GITHUB_TOKEN, OIDC, secrets, 403s |
caching-artifacts |
Cache misses, artifact v4 changes, corruption |
triggers |
Workflow not running, cron issues, dispatch |
concurrency-timing |
Job cancellation, matrix, timeouts |
known-unsolved |
Platform limitations with no fix |
Contributing
See CONTRIBUTING.md for how to add new error entries. It's easy:
- Create a YAML file in the appropriate
errors/{category}/directory - Follow the schema in
errors/_schema.json - Open a PR — CI validates your entry automatically
Source
All error scenarios sourced from: The Definitive GitHub Actions Debugging Guide
License
MIT — Hector Flores (htekdev)