{"id":33347356,"url":"https://github.com/withpointbreak/pointbreak-claude","last_synced_at":"2026-05-09T20:48:40.428Z","repository":{"id":325005696,"uuid":"1099446874","full_name":"withpointbreak/pointbreak-claude","owner":"withpointbreak","description":"Official Pointbreak debugging plugin for Claude Code - AI-assisted debugging with breakpoints, variable inspection, and step-through execution","archived":false,"fork":false,"pushed_at":"2025-11-19T02:40:15.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-19T04:15:56.998Z","etag":null,"topics":["ai-debugging","breakpoints","claude-code","claude-code-plugin","debugger","debugging","developer-tools","mcp","pointbreak"],"latest_commit_sha":null,"homepage":"https://withpointbreak.com","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/withpointbreak.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-19T02:13:41.000Z","updated_at":"2025-11-19T02:40:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/withpointbreak/pointbreak-claude","commit_stats":null,"previous_names":["withpointbreak/pointbreak-claude"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/withpointbreak/pointbreak-claude","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withpointbreak%2Fpointbreak-claude","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withpointbreak%2Fpointbreak-claude/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withpointbreak%2Fpointbreak-claude/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withpointbreak%2Fpointbreak-claude/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/withpointbreak","download_url":"https://codeload.github.com/withpointbreak/pointbreak-claude/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withpointbreak%2Fpointbreak-claude/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285755366,"owners_count":27226257,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-22T02:00:05.934Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-debugging","breakpoints","claude-code","claude-code-plugin","debugger","debugging","developer-tools","mcp","pointbreak"],"created_at":"2025-11-22T08:01:36.313Z","updated_at":"2025-11-22T08:02:36.600Z","avatar_url":"https://github.com/withpointbreak.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pointbreak Claude Code Plugin\n\nDebug programs with real debuggers through Claude Code. This plugin adds the Pointbreak skill and debugging commands that enable AI-assisted debugging with breakpoints, variable inspection, and step-through execution.\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n## 🎯 What This Plugin Does\n\nInstead of adding print statements or guessing what's wrong, Claude can now:\n\n- **Set breakpoints** - \"Break when x \u003e 100\"\n- **Inspect variables** - \"Show me the value of user_input\"\n- **Step through code** - \"Step into this function\"\n- **Find bugs faster** - Run and examine code in real-time\n\n## 📦 Installation\n\n### Prerequisites\n\n1. **Pointbreak must be installed** ([Installation Guide](https://docs.withpointbreak.com/installation))\n\n   - IDE extension installed (VS Code, Cursor, or compatible)\n   - MCP server configured\n\n2. **Claude Code** installed and running\n\n### Install the Plugin\n\n```bash\n# Add this repository as a marketplace\n/plugin marketplace add withpointbreak/pointbreak-claude\n\n# Install the plugin\n/plugin install pointbreak@pointbreak-claude\n```\n\nOr for local development:\n\n```bash\n# Clone the repository\ngit clone https://github.com/withpointbreak/pointbreak-claude.git\n\n# Add as local marketplace\n/plugin marketplace add /path/to/pointbreak-claude\n\n# Install\n/plugin install pointbreak@pointbreak-claude\n```\n\n## 🚀 Quick Start\n\nOnce installed, simply ask Claude to debug:\n\n```\nDebug this Python script - it's not returning the right results\n```\n\nClaude will:\n\n1. Analyze the code\n2. Set strategic breakpoints\n3. Run the debugger\n4. Inspect variables\n5. Identify the issue\n\n## 📚 What's Included\n\n### Agent Skill\n\n**`skills/pointbreak/`** - Comprehensive debugging skill that teaches Claude:\n\n- How to use all Pointbreak MCP tools effectively\n- Common debugging patterns (loops, exceptions, state tracking)\n- Language-specific debugging configurations\n- Advanced techniques (performance, concurrency, memory)\n\nThe skill triggers automatically when Claude detects debugging needs.\n\n### Slash Commands\n\n#### `/debug [file-path]`\n\nStart debugging with intelligent breakpoint placement.\n\n```bash\n/debug src/app.py          # Debug specific file\n/debug                      # Debug current file\n```\n\nClaude analyzes your code and sets breakpoints at:\n\n- Function entry points\n- Error handling blocks\n- Return statements\n- Loop entry points\n- Conditional branches\n\n#### `/step [over|into|out]`\n\nStep through code execution.\n\n```bash\n/step                       # Step over (default)\n/step into                  # Step into function\n/step out                   # Step out of function\n```\n\n#### `/inspect [variables...]`\n\nInspect variable values at current breakpoint.\n\n```bash\n/inspect result error       # Check specific variables\n/inspect user.email         # Check nested properties\n/inspect                    # Show all local variables\n```\n\n## 💡 Usage Examples\n\n### Find a Bug\n\n**You:** \"The calculate_average function returns wrong results\"\n\n**Claude will:**\n\n1. Set breakpoint in calculate_average\n2. Run to breakpoint\n3. Inspect variables (numbers, total, count)\n4. Step through the logic\n5. Identify the bug (e.g., dividing by wrong value)\n\n### Understand Code Flow\n\n**You:** \"Step through the authentication process\"\n\n**Claude will:**\n\n1. Set breakpoint at auth function entry\n2. Step into each function call\n3. Show variable values at each step\n4. Explain what's happening\n\n### Track Down a Crash\n\n**You:** \"Program crashes with IndexError on line 42\"\n\n**Claude will:**\n\n1. Set breakpoint before line 42\n2. Inspect array/list and index variables\n3. Identify why index is out of bounds\n4. Suggest the fix\n\n## 🔧 Advanced Usage\n\n### Debug Configurations\n\nThe skill includes pre-configured debug setups for:\n\n- Python (basic, Django, Flask, FastAPI, pytest)\n- JavaScript/Node.js (Express, TypeScript, Jest, Next.js)\n- Rust (cargo build, cargo test)\n- Go (programs, tests, packages)\n- C/C++ (GCC, Clang, LLDB, MSVC)\n- Java, C#, Ruby, PHP, and more\n\n### Performance Debugging\n\n**You:** \"Why is this function so slow?\"\n\n**Claude can:**\n\n- Set breakpoints at function boundaries\n- Time execution between points\n- Identify slow code sections\n- Suggest optimizations\n\n### Async/Concurrent Debugging\n\n**You:** \"Debug this race condition\"\n\n**Claude can:**\n\n- List all threads\n- Pause all threads simultaneously\n- Inspect shared state across threads\n- Identify conflicting access\n\n## 📖 Documentation\n\n- **Full MCP Tools Reference**: https://docs.withpointbreak.com/reference/mcp-tools\n- **Pointbreak Docs**: https://docs.withpointbreak.com\n- **Claude Code Plugins**: https://docs.claude.com/en/docs/claude-code/plugins\n\n## 🛠️ How It Works\n\nThis plugin uses the [Model Context Protocol (MCP)](https://modelcontextprotocol.io) to connect Claude to your IDE's debugger through the Pointbreak MCP server.\n\n```\n┌─────────────┐     ┌──────────────┐     ┌─────────────┐     ┌──────────┐\n│   Claude    │────▶│  Pointbreak  │────▶│     VS      │────▶│ Debugger │\n│    Code     │ MCP │     MCP      │     │    Code     │ DAP │          │\n└─────────────┘     └──────────────┘     └─────────────┘     └──────────┘\n```\n\n- **Claude Code**: AI assistant with natural language interface\n- **Pointbreak MCP**: Translates AI requests to debugger commands\n- **VS Code**: Your IDE with Debug Adapter Protocol\n- **Debugger**: Language-specific debug adapter (Python, Node, LLDB, etc.)\n\n## 🤝 Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork this repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Make your changes\n4. Test with local marketplace installation\n5. Commit changes (`git commit -m 'Add amazing feature'`)\n6. Push to branch (`git push origin feature/amazing-feature`)\n7. Open a Pull Request\n\n### Development Setup\n\n```bash\n# Clone the repo\ngit clone https://github.com/withpointbreak/pointbreak-claude.git\ncd pointbreak-claude\n\n# Add as local marketplace for testing\n/plugin marketplace add $(pwd)\n\n# Install locally\n/plugin install pointbreak@pointbreak-claude\n\n# Make changes and reinstall\n/plugin uninstall pointbreak@pointbreak-claude\n/plugin install pointbreak@pointbreak-claude\n```\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🔗 Links\n\n- **Pointbreak Website**: https://withpointbreak.com\n- **Pointbreak Docs**: https://docs.withpointbreak.com\n- **GitHub**: https://github.com/withpointbreak/pointbreak-claude\n- **Issues**: https://github.com/withpointbreak/pointbreak-claude/issues\n\n## ❓ Support\n\n- **Documentation**: Check the [Pointbreak docs](https://docs.withpointbreak.com)\n- **Issues**: Report bugs or request features via [GitHub Issues](https://github.com/withpointbreak/pointbreak-claude/issues)\n- **Discord**: Join the Pointbreak community (coming soon)\n\n---\n\n**AI guesses. Pointbreak knows.**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithpointbreak%2Fpointbreak-claude","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwithpointbreak%2Fpointbreak-claude","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithpointbreak%2Fpointbreak-claude/lists"}