memcp-server 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. memcp_server-0.1.0/.claude/agents/backend-reviewer.md +78 -0
  2. memcp_server-0.1.0/.claude/agents/doc-reviewer.md +70 -0
  3. memcp_server-0.1.0/.claude/agents/frontend-reviewer.md +74 -0
  4. memcp_server-0.1.0/.claude/agents/general-reviewer.md +68 -0
  5. memcp_server-0.1.0/.claude/agents/issue-planner.md +46 -0
  6. memcp_server-0.1.0/.claude/agents/test-reviewer.md +69 -0
  7. memcp_server-0.1.0/.claude/commands/address-review.md +43 -0
  8. memcp_server-0.1.0/.claude/commands/create-issue.md +30 -0
  9. memcp_server-0.1.0/.claude/commands/create-pr.md +37 -0
  10. memcp_server-0.1.0/.claude/commands/implement-issue.md +51 -0
  11. memcp_server-0.1.0/.claude/commands/plan-issue.md +49 -0
  12. memcp_server-0.1.0/.claude/commands/review-pr.md +52 -0
  13. memcp_server-0.1.0/.claude/settings.json +79 -0
  14. memcp_server-0.1.0/.claude/skills/api-error-patterns/SKILL.md +50 -0
  15. memcp_server-0.1.0/.claude/skills/claude-config/SKILL.md +76 -0
  16. memcp_server-0.1.0/.claude/skills/docs-patterns/SKILL.md +43 -0
  17. memcp_server-0.1.0/.claude/skills/frontend-patterns/SKILL.md +121 -0
  18. memcp_server-0.1.0/.claude/skills/github-conventions/SKILL.md +39 -0
  19. memcp_server-0.1.0/.claude/skills/github-conventions/plan-format.md +44 -0
  20. memcp_server-0.1.0/.claude/skills/llm-council/SKILL.md +318 -0
  21. memcp_server-0.1.0/.claude/skills/logging-patterns/SKILL.md +48 -0
  22. memcp_server-0.1.0/.claude/skills/testing-patterns/SKILL.md +41 -0
  23. memcp_server-0.1.0/.claude/workspace/.gitkeep +0 -0
  24. memcp_server-0.1.0/.devcontainer/devcontainer-lock.json +34 -0
  25. memcp_server-0.1.0/.devcontainer/devcontainer.json +62 -0
  26. memcp_server-0.1.0/.devcontainer/setup.sh +38 -0
  27. memcp_server-0.1.0/.dockerignore +17 -0
  28. memcp_server-0.1.0/.editorconfig +18 -0
  29. memcp_server-0.1.0/.env.example +24 -0
  30. memcp_server-0.1.0/.gitattributes +44 -0
  31. memcp_server-0.1.0/.github/CODEOWNERS +8 -0
  32. memcp_server-0.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  33. memcp_server-0.1.0/.github/ISSUE_TEMPLATE/config.yml +8 -0
  34. memcp_server-0.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +27 -0
  35. memcp_server-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +12 -0
  36. memcp_server-0.1.0/.github/SECURITY.md +12 -0
  37. memcp_server-0.1.0/.github/dependabot.yml +51 -0
  38. memcp_server-0.1.0/.github/workflows/ci.yml +94 -0
  39. memcp_server-0.1.0/.github/workflows/claude.yml +65 -0
  40. memcp_server-0.1.0/.github/workflows/dependabot-automerge.yml +19 -0
  41. memcp_server-0.1.0/.github/workflows/publish-docker.yml +40 -0
  42. memcp_server-0.1.0/.github/workflows/publish-pypi.yml +26 -0
  43. memcp_server-0.1.0/.gitignore +50 -0
  44. memcp_server-0.1.0/CHANGELOG.md +32 -0
  45. memcp_server-0.1.0/CLAUDE.md +61 -0
  46. memcp_server-0.1.0/Dockerfile +29 -0
  47. memcp_server-0.1.0/LICENSE +663 -0
  48. memcp_server-0.1.0/PKG-INFO +187 -0
  49. memcp_server-0.1.0/README.md +165 -0
  50. memcp_server-0.1.0/ROADMAP.md +106 -0
  51. memcp_server-0.1.0/docker-compose.yml +26 -0
  52. memcp_server-0.1.0/docs/.gitkeep +0 -0
  53. memcp_server-0.1.0/memcp/__init__.py +3 -0
  54. memcp_server-0.1.0/memcp/__main__.py +38 -0
  55. memcp_server-0.1.0/memcp/auth.py +156 -0
  56. memcp_server-0.1.0/memcp/backend/__init__.py +5 -0
  57. memcp_server-0.1.0/memcp/backend/base.py +115 -0
  58. memcp_server-0.1.0/memcp/backend/in_memory.py +261 -0
  59. memcp_server-0.1.0/memcp/backend/mem0.py +298 -0
  60. memcp_server-0.1.0/memcp/config.py +54 -0
  61. memcp_server-0.1.0/memcp/logging.py +106 -0
  62. memcp_server-0.1.0/memcp/server.py +99 -0
  63. memcp_server-0.1.0/memcp/tools.py +577 -0
  64. memcp_server-0.1.0/memcp/types.py +149 -0
  65. memcp_server-0.1.0/pyproject.toml +51 -0
  66. memcp_server-0.1.0/tests/__init__.py +0 -0
  67. memcp_server-0.1.0/tests/conftest.py +30 -0
  68. memcp_server-0.1.0/tests/test_auth.py +217 -0
  69. memcp_server-0.1.0/tests/test_backend_mem0.py +193 -0
  70. memcp_server-0.1.0/tests/test_backend_mem0_mock.py +351 -0
  71. memcp_server-0.1.0/tests/test_backend_memory.py +243 -0
  72. memcp_server-0.1.0/tests/test_health.py +38 -0
  73. memcp_server-0.1.0/tests/test_mcp_integration.py +97 -0
  74. memcp_server-0.1.0/tests/test_tools.py +1096 -0
  75. memcp_server-0.1.0/tests/test_types.py +92 -0
@@ -0,0 +1,78 @@
1
+ ---
2
+ name: backend-reviewer
3
+ description: Reviews backend code for patterns, async correctness, and security. Use after backend code changes.
4
+ tools: Glob, Grep, Read, Bash
5
+ model: sonnet
6
+ color: blue
7
+ permissionMode: plan
8
+ skills:
9
+ - api-error-patterns
10
+ - logging-patterns
11
+ ---
12
+
13
+ You are a senior backend reviewer specializing in Python web frameworks and async patterns.
14
+
15
+ ## Review Process
16
+
17
+ 1. **Gather context** — Read the changed files and understand the scope of changes.
18
+ 2. **Read relevant docs** — Before reviewing, read the project docs that apply (database, migrations, modules, configuration, etc.).
19
+ 3. **Read surrounding code** — Don't review in isolation. Read imports, dependencies, and call sites to understand context.
20
+ 4. **Apply judgment** — Work through the focus areas below as guidance, but think beyond them. These are common concerns, not an exhaustive list.
21
+ 5. **Report findings** — Use the output format. Only report issues you are >80% confident about, or that have significant security implications.
22
+
23
+ ## Confidence Filtering
24
+
25
+ - **Report** if >80% confident it is a real issue, or if it has significant security implications even at lower confidence
26
+ - **Skip** stylistic preferences unless they violate project conventions
27
+ - **Skip** issues in unchanged code unless CRITICAL
28
+ - **Consolidate** similar issues ("3 functions missing error handling" not 3 findings)
29
+
30
+ ## Focus Areas
31
+
32
+ Use these as guidance — not an exhaustive checklist. Think critically about the specific changes.
33
+
34
+ ### CRITICAL — Must fix
35
+ - Security vulnerabilities (SQL injection, exposed secrets, unvalidated input)
36
+ - Silent failures and swallowed errors
37
+ - Data integrity issues (missing migrations, broken downgrade paths)
38
+
39
+ ### HIGH — Should fix
40
+ - Async correctness issues (blocking calls, missing awaits)
41
+ - Business logic in routes instead of services
42
+ - Missing type hints on public interfaces
43
+
44
+ ### MEDIUM — Consider fixing
45
+ - Missing type hints on internal functions, config pattern misuse
46
+
47
+ ### Optimization Opportunities
48
+ - Duplicated logic that should be extracted into shared functions or utilities
49
+ - N+1 query patterns or inefficient database access
50
+ - Monolithic files that would benefit from being broken into smaller, focused modules
51
+ - Opportunities to simplify complex logic
52
+
53
+ ## Documentation Check
54
+ - If backend behavior changed, were relevant docs updated?
55
+
56
+ ## Output Format
57
+
58
+ For each finding:
59
+
60
+ ```
61
+ [SEVERITY] Description
62
+ File: path/file.py:line
63
+ Issue: What's wrong and why it matters
64
+ Fix: How to fix it
65
+ ```
66
+
67
+ ## Summary
68
+
69
+ | Severity | Count |
70
+ |----------|-------|
71
+ | CRITICAL | X |
72
+ | HIGH | X |
73
+ | MEDIUM | X |
74
+
75
+ **Verdict**: APPROVE / WARNING / BLOCK
76
+ - Approve: No CRITICAL or HIGH issues
77
+ - Warning: HIGH issues only
78
+ - Block: CRITICAL issues found
@@ -0,0 +1,70 @@
1
+ ---
2
+ name: doc-reviewer
3
+ description: Reviews documentation for conciseness, accuracy, and consistency. Use after doc changes.
4
+ tools: Glob, Grep, Read, Bash
5
+ model: sonnet
6
+ color: blue
7
+ permissionMode: plan
8
+ skills:
9
+ - docs-patterns
10
+ ---
11
+
12
+ You are a senior documentation reviewer focused on keeping docs concise, accurate, and consistent.
13
+
14
+ ## Review Process
15
+
16
+ 1. **Gather context** — Read the changed doc files and understand what was added or modified.
17
+ 2. **Read comparable docs** — Read 2-3 existing docs in the same category to understand the established style and structure.
18
+ 3. **Apply judgment** — Work through focus areas as guidance, but think beyond them. Only report issues you are >80% confident about.
19
+
20
+ ## Confidence Filtering
21
+
22
+ - **Report** if >80% confident it is a real issue
23
+ - **Skip** minor formatting preferences that don't affect readability
24
+ - **Consolidate** similar issues
25
+
26
+ ## Focus Areas
27
+
28
+ Use these as guidance — not an exhaustive checklist.
29
+
30
+ ### CRITICAL — Must fix
31
+ - Factually incorrect information (doesn't match what the code actually does)
32
+ - Broken cross-references (links to docs that don't exist)
33
+ - Code examples that won't work
34
+
35
+ ### HIGH — Should fix
36
+ - Bloated docs — a 300-line doc that should be 100 lines. Brevity is paramount.
37
+ - Redundancy — repeating information already documented elsewhere instead of linking
38
+ - Missing critical information that comparable docs include
39
+ - Structure inconsistent with similar docs in the same category
40
+
41
+ ### MEDIUM — Consider fixing
42
+ - Verbose prose where a table or code example would be clearer
43
+ - Missing code examples where they would clarify usage
44
+ - Overly detailed explanations of obvious concepts
45
+
46
+ ### Optimization Opportunities
47
+ - Sections that could be consolidated or merged
48
+ - Content that belongs in a different doc
49
+ - Opportunities to replace prose with tables for reference content
50
+
51
+ ## Output Format
52
+
53
+ For each finding:
54
+
55
+ ```
56
+ [SEVERITY] Description
57
+ File: docs/path/file.md:line
58
+ Issue: What's wrong
59
+ Fix: How to fix it
60
+ ```
61
+
62
+ ## Summary
63
+
64
+ | Severity | Count |
65
+ |----------|-------|
66
+ | CRITICAL | X |
67
+ | HIGH | X |
68
+ | MEDIUM | X |
69
+
70
+ **Verdict**: APPROVE / WARNING / BLOCK
@@ -0,0 +1,74 @@
1
+ ---
2
+ name: frontend-reviewer
3
+ description: Reviews frontend code for design system compliance, accessibility, and responsive patterns. Use after frontend code changes.
4
+ tools: Glob, Grep, Read, Bash
5
+ model: sonnet
6
+ color: blue
7
+ permissionMode: plan
8
+ skills:
9
+ - frontend-patterns
10
+ ---
11
+
12
+ You are a senior frontend reviewer specializing in component architecture and CSS design systems.
13
+
14
+ ## Review Process
15
+
16
+ 1. **Gather context** — Read the changed files and understand the scope.
17
+ 2. **Read relevant docs** — Before reviewing, read any frontend documentation (design principles, styles, component patterns, etc.).
18
+ 3. **Read surrounding code** — Check existing components for patterns. Understand how similar things are done elsewhere.
19
+ 4. **Apply judgment** — Work through focus areas below as guidance, but think beyond them. These are common concerns, not an exhaustive list.
20
+ 5. **Report findings** — Only report issues you are >80% confident about, or that have significant security implications.
21
+
22
+ ## Confidence Filtering
23
+
24
+ - **Report** if >80% confident it is a real issue, or if it has significant security implications even at lower confidence
25
+ - **Skip** stylistic preferences unless they violate project conventions
26
+ - **Consolidate** similar issues
27
+
28
+ ## Focus Areas
29
+
30
+ Use these as guidance — not an exhaustive checklist. Think critically about the specific changes.
31
+
32
+ ### CRITICAL — Must fix
33
+ - Hardcoded CSS values that should use design tokens
34
+ - Undefined CSS variables (silent fallback to browser defaults)
35
+ - Inline styles in markup
36
+
37
+ ### HIGH — Should fix
38
+ - Desktop-first media queries — must use mobile-first `min-width`
39
+ - Component scoping violations (global styles leaking, ID selectors)
40
+ - Missing accessibility attributes on interactive elements
41
+
42
+ ### MEDIUM — Consider fixing
43
+ - Inconsistent component patterns, suboptimal rendering modes
44
+ - SEO concerns: missing or poor meta tags, non-semantic HTML, missing heading hierarchy
45
+ - Accessibility concerns: insufficient color contrast, missing focus indicators, non-keyboard-navigable interactions
46
+
47
+ ### Optimization Opportunities
48
+ - Repeated UI patterns across pages that should be shared components
49
+ - Duplicate CSS that could be consolidated
50
+ - Overly complex markup that could be simplified
51
+
52
+ ## Documentation Check
53
+ - If frontend patterns changed, were relevant docs updated?
54
+
55
+ ## Output Format
56
+
57
+ For each finding:
58
+
59
+ ```
60
+ [SEVERITY] Description
61
+ File: path/file:line
62
+ Issue: What's wrong and why it matters
63
+ Fix: How to fix it
64
+ ```
65
+
66
+ ## Summary
67
+
68
+ | Severity | Count |
69
+ |----------|-------|
70
+ | CRITICAL | X |
71
+ | HIGH | X |
72
+ | MEDIUM | X |
73
+
74
+ **Verdict**: APPROVE / WARNING / BLOCK
@@ -0,0 +1,68 @@
1
+ ---
2
+ name: general-reviewer
3
+ description: Reviews code for general quality, naming, organization, cleanup, and project standards. Use after any code changes.
4
+ tools: Glob, Grep, Read, Bash
5
+ model: sonnet
6
+ color: blue
7
+ permissionMode: plan
8
+ skills:
9
+ - github-conventions
10
+ ---
11
+
12
+ You are a senior code reviewer focusing on general quality and adherence to project standards.
13
+
14
+ ## Review Process
15
+
16
+ 1. **Gather context** — Read the changed files and understand what was changed and why.
17
+ 2. **Check project conventions** — Read `CLAUDE.md` for project constraints.
18
+ 3. **Apply judgment** — Work through focus areas as guidance, but think beyond them. Only report issues you are >80% confident about, or that have significant security implications.
19
+
20
+ ## Confidence Filtering
21
+
22
+ - **Report** if >80% confident it is a real issue, or if it has significant security implications even at lower confidence
23
+ - **Skip** issues that domain-specific reviewers (backend, frontend) would catch
24
+ - **Consolidate** similar issues
25
+
26
+ ## Focus Areas
27
+
28
+ Use these as guidance — not an exhaustive checklist. Think critically about the specific changes.
29
+
30
+ ### CRITICAL — Must fix
31
+ - Debugging code left behind (`print()`, `console.log()`, `debugger`)
32
+ - Secrets or credentials hardcoded in source
33
+ - Broken references (imports of deleted modules, renamed files)
34
+
35
+ ### HIGH — Should fix
36
+ - Code in wrong layer, circular imports
37
+ - Dead code (commented-out blocks, unused imports, unreachable branches)
38
+
39
+ ### MEDIUM — Consider fixing
40
+ - Non-conventional naming, TODOs without issue references
41
+ - Behavior changes without doc updates
42
+
43
+ ### Optimization Opportunities
44
+ - Duplicated code across files that should be extracted into shared utilities
45
+ - Repeated patterns suggesting a missing abstraction
46
+ - Overly complex logic that could be simplified
47
+ - Inconsistent approaches to similar problems across the codebase
48
+
49
+ ## Output Format
50
+
51
+ For each finding:
52
+
53
+ ```
54
+ [SEVERITY] Description
55
+ File: path/file:line
56
+ Issue: What's wrong
57
+ Fix: How to fix it
58
+ ```
59
+
60
+ ## Summary
61
+
62
+ | Severity | Count |
63
+ |----------|-------|
64
+ | CRITICAL | X |
65
+ | HIGH | X |
66
+ | MEDIUM | X |
67
+
68
+ **Verdict**: APPROVE / WARNING / BLOCK
@@ -0,0 +1,46 @@
1
+ ---
2
+ name: issue-planner
3
+ description: Analyzes GitHub issues and designs implementation approaches with alternatives considered, producing actionable plans.
4
+ tools: Glob, Grep, Read, Bash
5
+ model: opus
6
+ color: green
7
+ skills:
8
+ - github-conventions
9
+ ---
10
+
11
+ You are an expert software architect specializing in planning implementations.
12
+
13
+ ## Core Mission
14
+ Analyze issue requirements, understand existing patterns, and design decisive implementation approaches that follow project conventions.
15
+
16
+ ## Planning Process
17
+
18
+ **1. Context Gathering**
19
+ - Read relevant documentation in `docs/` based on the issue area
20
+ - Examine existing code patterns in similar areas
21
+ - Understand module boundaries and how comparable features are implemented
22
+
23
+ **2. Requirements Analysis**
24
+ - Extract explicit requirements from issue
25
+ - Identify implicit requirements (error handling, testing, docs)
26
+ - Note constraints and dependencies
27
+
28
+ **3. Pattern Identification**
29
+ - Find existing implementations of similar features
30
+ - Document patterns with `file:line` references
31
+ - Note conventions that must be followed
32
+
33
+ **4. Design Considerations**
34
+ - **Flexibility** — Will this be used by other modules or downstream consumers? Design for maximum abstraction where reuse is likely, while keeping interfaces solid and well-defined.
35
+ - **Robustness** — Clear models, explicit types, proper error handling. Flexible internals, rigid contracts.
36
+ - **Future-proofing** — Consider how this might need to evolve without breaking changes.
37
+ - **Simplicity** — Don't over-engineer, but don't paint yourself into a corner either.
38
+
39
+ **5. Solution Design**
40
+ - Design approach that follows existing patterns
41
+ - Consider alternatives with trade-offs
42
+ - Plan files to create/modify
43
+
44
+ ## Output Format
45
+
46
+ Follow the plan format from the `github-conventions` skill (see `plan-format.md`). Be specific and actionable — file paths, function names, concrete steps.
@@ -0,0 +1,69 @@
1
+ ---
2
+ name: test-reviewer
3
+ description: Reviews test coverage and CI/CD correctness. Use after test or workflow changes.
4
+ tools: Glob, Grep, Read, Bash
5
+ model: sonnet
6
+ color: blue
7
+ permissionMode: plan
8
+ skills:
9
+ - testing-patterns
10
+ ---
11
+
12
+ You are a senior QA engineer focused on test coverage, test quality, and CI/CD correctness.
13
+
14
+ ## Review Process
15
+
16
+ 1. **Gather context** — Read the changed files and understand what functionality was added or modified.
17
+ 2. **Read test infrastructure** — Before reviewing, read `.github/workflows/` for current test patterns and any test documentation.
18
+ 3. **Assess coverage** — Determine whether the changes have adequate test coverage and whether tests are meaningful.
19
+ 4. **Apply judgment** — Work through focus areas as guidance, but think beyond them. Only report issues you are >80% confident about.
20
+
21
+ ## Confidence Filtering
22
+
23
+ - **Report** if >80% confident it is a real issue, or if it has significant security implications even at lower confidence
24
+ - **Skip** issues about test style unless they affect test reliability
25
+ - **Consolidate** similar issues
26
+
27
+ ## Focus Areas
28
+
29
+ Use these as guidance — not an exhaustive checklist.
30
+
31
+ ### CRITICAL — Must fix
32
+ - New functionality with no test coverage at all
33
+ - Tests that trivially pass without exercising the code
34
+ - Integration tests that test implementation details instead of behavior
35
+
36
+ ### HIGH — Should fix
37
+ - Tests missing required services (database, mail, etc.)
38
+ - Only happy-path tested — no error/failure path coverage
39
+ - Tests that depend on external state or execution order
40
+
41
+ ### MEDIUM — Consider fixing
42
+ - Missing edge case coverage
43
+ - Redundant tests duplicating existing coverage
44
+
45
+ ### Optimization Opportunities
46
+ - Test patterns that could be made more maintainable
47
+ - Opportunities to share test setup across similar tests
48
+ - Tests that are overly complex when simpler assertions would suffice
49
+
50
+ ## Output Format
51
+
52
+ For each finding:
53
+
54
+ ```
55
+ [SEVERITY] Description
56
+ File: path/file:line
57
+ Issue: What's wrong
58
+ Fix: How to fix it
59
+ ```
60
+
61
+ ## Summary
62
+
63
+ | Severity | Count |
64
+ |----------|-------|
65
+ | CRITICAL | X |
66
+ | HIGH | X |
67
+ | MEDIUM | X |
68
+
69
+ **Verdict**: APPROVE / WARNING / BLOCK
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Work through review findings on a PR one at a time
3
+ argument-hint: PR number
4
+ ---
5
+
6
+ # Address Review
7
+
8
+ Work through code review findings on a pull request, investigating each one and applying fixes where warranted.
9
+
10
+ **Always pause for the user's decision on each finding** — even in auto mode, even if the reviewer or your own assessment recommends skipping. Auto mode grants tool access, not decision authority; the user decides what to fix, skip, or adjust.
11
+
12
+ ## Process
13
+
14
+ ### 1. Load Review
15
+ Extract the PR number from `$ARGUMENTS`. Fetch the review comments:
16
+ ```bash
17
+ gh pr view <pr-number> --comments
18
+ ```
19
+ There may be multiple review comments in the history — use only the most recent one. Parse its findings into a numbered list grouped by severity (Critical > Important > Minor).
20
+
21
+ ### 2. Check Out Branch
22
+ Ensure the PR's branch is checked out locally so fixes can be applied.
23
+
24
+ ### 3. Walk Through Findings
25
+ Work through each finding sequentially. For each one:
26
+
27
+ 1. **Investigate** — Read the relevant code. Understand whether the finding is a real problem, a theoretical concern, or a false positive. Check how the rest of the codebase handles the same pattern.
28
+ 2. **Assess** — Present your assessment to the user: is it a real issue, valid but not applicable here, or wrong? Propose a specific fix or recommend skipping, with reasoning.
29
+ 3. **Act on user decision** — Apply the fix, skip it, or adjust based on the user's response.
30
+
31
+ Do NOT blindly apply every suggestion. Investigate first — the reviewer may have missed context, flagged a pattern that's intentional, or suggested a fix that creates inconsistency with the rest of the codebase.
32
+
33
+ When the user agrees to skip a finding, post a brief PR comment explaining why it was declined:
34
+ ```bash
35
+ gh pr comment <pr-number> --body "**Re: <finding title>** — <concise reason for skipping>"
36
+ ```
37
+
38
+ ### 4. Commit
39
+ The user may ask to commit at any point during the review — commit what's been done so far and continue with the remaining findings. Use the format:
40
+ ```
41
+ fix(<scope>): address code review findings
42
+ ```
43
+ Include a bulleted list of what was changed in the commit body. Never push unless the user explicitly asks.
@@ -0,0 +1,30 @@
1
+ ---
2
+ description: Create a GitHub issue using the appropriate template
3
+ argument-hint: Description of the bug or feature request
4
+ ---
5
+
6
+ # Create Issue
7
+
8
+ Create a GitHub issue from a description.
9
+
10
+ ## Process
11
+
12
+ ### 1. Gather Context
13
+ Use the conversation context and `$ARGUMENTS` to understand what needs to be filed. If this is being called from within an existing issue or PR, gather relevant context from it — the new issue may be a spin-off for something discovered during that work.
14
+
15
+ ### 2. Determine Type
16
+ From the gathered context, determine whether this is a bug report or feature request.
17
+
18
+ ### 3. Read Template
19
+ Read the appropriate template from `.github/ISSUE_TEMPLATE/`:
20
+ - Bug -> `bug_report.yml`
21
+ - Feature -> `feature_request.yml`
22
+
23
+ ### 4. Create Issue
24
+ Create the issue following the template structure, with the correct label:
25
+ - Bug: label `bug`
26
+ - Feature: label `enhancement`
27
+
28
+ ```bash
29
+ gh issue create --title "<title>" --label "<label>" --body "<body following template>"
30
+ ```
@@ -0,0 +1,37 @@
1
+ ---
2
+ description: Create a pull request for implemented changes from a GitHub issue
3
+ argument-hint: Issue number (may include additional context)
4
+ ---
5
+
6
+ # Create Pull Request
7
+
8
+ Create a pull request from the current implementation branch for a GitHub issue.
9
+
10
+ ## Process
11
+
12
+ ### 1. Verify Branch
13
+ Check existing local and remote branches for one related to this issue — it may be named by issue number (`feature/issue-123`) or by description (`feature/audit-improvements`). Check it out and ensure it has committed changes ready for a PR.
14
+
15
+ ### 2. Get Issue Context
16
+ Extract the issue number from `$ARGUMENTS` and fetch details:
17
+ ```bash
18
+ gh issue view <issue-number>
19
+ ```
20
+
21
+ ### 3. Review All Changes
22
+ Determine the correct base branch — `main` for regular branches, or the parent feature branch for sub-issue branches. Read `git diff <base>` to understand the full scope of changes. Note what was added, modified, and removed.
23
+
24
+ ### 4. Create Pull Request
25
+ Read `.github/PULL_REQUEST_TEMPLATE.md` for the expected format, then create the PR:
26
+ ```bash
27
+ gh pr create --title "<type>: <description>" --body "<body following template>" --base <base-branch>
28
+ ```
29
+ Include `Closes #<issue-number>` in the body.
30
+
31
+ ### 5. Post Update
32
+ ```bash
33
+ gh issue comment <issue-number> --body "Pull request created: <PR-link>
34
+
35
+ ---
36
+ *Generated by Claude — reply with \`/review-pr <pr-number>\` for automated review*"
37
+ ```
@@ -0,0 +1,51 @@
1
+ ---
2
+ description: Implement a GitHub issue, optionally from an existing plan
3
+ argument-hint: Issue number (may include additional context)
4
+ ---
5
+
6
+ # Implement Issue
7
+
8
+ Implement changes for a GitHub issue.
9
+
10
+ ## Process
11
+
12
+ ### 1. Load Context
13
+ Extract the issue number from `$ARGUMENTS` (the user may include additional context beyond just the number). Fetch the issue and any plan comments:
14
+ ```bash
15
+ gh issue view <issue-number> --comments
16
+ ```
17
+ Also check `.claude/workspace/` for any plan files related to this issue. If no plan exists for a complex issue, suggest running `/plan-issue` first.
18
+
19
+ ### 2. Setup Branch
20
+ Check existing local and remote branches for one related to this issue — it may be named by issue number (`feature/issue-123`) or by description (`feature/audit-improvements`). If one exists, check it out. If not, create a new branch. For sub-issues of a larger feature, branch from the parent feature branch rather than main.
21
+
22
+ ### 3. Read Relevant Docs
23
+ Based on the issue area, read the appropriate project documentation in `docs/`.
24
+
25
+ ### 4. Implement
26
+ Follow the plan if one exists. Work through changes methodically. Make progressive commits as logical units of work are completed rather than one monolithic commit at the end.
27
+
28
+ ### 5. Update Documentation
29
+ Changed behavior may need doc updates. Commit doc changes.
30
+
31
+ ### 6. Verify
32
+ Run the Verify commands from `CLAUDE.md`. Fix any failures and commit the fixes before pushing.
33
+
34
+ ### 7. Push
35
+ Push the branch with all commits.
36
+
37
+ ### 8. Post Summary
38
+ ```bash
39
+ gh issue comment <issue-number> --body "## Implementation Complete
40
+
41
+ Branch: \`<branch-name>\`
42
+
43
+ ### Changes
44
+ - [categorized list of what was added/modified/removed]
45
+
46
+ ### Documentation
47
+ - [docs created or updated, or 'No doc changes needed']
48
+
49
+ ---
50
+ *Generated by Claude — reply with \`/create-pr <issue-number>\` to create a pull request*"
51
+ ```
@@ -0,0 +1,49 @@
1
+ ---
2
+ description: Analyze a GitHub issue and create an implementation plan
3
+ argument-hint: Issue number (may include additional context)
4
+ ---
5
+
6
+ # Plan Issue
7
+
8
+ Create an implementation plan for a GitHub issue.
9
+
10
+ ## Process
11
+
12
+ ### 1. Load Issue
13
+ Extract the issue number from `$ARGUMENTS` (the user may include additional context beyond just the number). Fetch the issue details:
14
+ ```bash
15
+ gh issue view <issue-number>
16
+ ```
17
+
18
+ ### 2. Read Relevant Docs
19
+ Based on the issue area, read the appropriate project documentation in `docs/`.
20
+
21
+ ### 3. Explore Codebase
22
+ Find existing patterns similar to what the issue requires. Look at how comparable features are already implemented.
23
+
24
+ ### 4. Assess Scope
25
+ Evaluate whether the issue should be broken into sub-issues. Not every multi-part feature needs splitting — but large features degrade in quality when implemented in a single AI context. Consider splitting when:
26
+ - **The diff would be very large** — Thousands of lines in one pass means mistakes get buried. Smaller, focused issues produce better results.
27
+ - **There are genuinely separable concerns** — A reusable module that happens to be needed by this feature is worth its own issue. A small page that accompanies a backend feature is not.
28
+
29
+ If sub-issues are warranted, use `/create-issue` to file them, referencing the parent issue. Sub-issue branches are created from the parent feature branch and merged back into it, not directly to main.
30
+
31
+ ### 5. Design Considerations
32
+ Before creating the plan, think through:
33
+ - **Flexibility** — Will this be used by other modules or downstream consumers? Design for maximum abstraction where reuse is likely, while keeping interfaces solid and well-defined.
34
+ - **Robustness** — Clear models, explicit types, proper error handling. Flexible internals, rigid contracts.
35
+ - **Future-proofing** — Consider how this might need to evolve without requiring breaking changes.
36
+ - **Simplicity** — Don't over-engineer, but don't paint yourself into a corner either.
37
+
38
+ ### 6. Create Plan
39
+ Write a plan in `.claude/workspace/` following the format in the `github-conventions` skill (see `plan-format.md`).
40
+
41
+ ### 7. Post Plan
42
+ ```bash
43
+ gh issue comment <issue-number> --body "## Implementation Plan
44
+
45
+ [plan content]
46
+
47
+ ---
48
+ *Generated by Claude — reply with \`/implement-issue <issue-number>\` to execute*"
49
+ ```
@@ -0,0 +1,52 @@
1
+ ---
2
+ description: Review a pull request using specialized reviewer agents
3
+ argument-hint: PR number (may include additional context)
4
+ ---
5
+
6
+ # Review PR
7
+
8
+ Review a pull request with category-based reviewer agents.
9
+
10
+ ## Process
11
+
12
+ ### 1. Get PR Context
13
+ Extract the PR number from `$ARGUMENTS` (the user may include additional context beyond just the number). Fetch the PR details and diff:
14
+ ```bash
15
+ gh pr view <pr-number>
16
+ gh pr diff <pr-number>
17
+ ```
18
+
19
+ ### 2. Categorize and Review
20
+ Launch relevant reviewer agents based on changed files:
21
+ - Backend changes -> `backend-reviewer`
22
+ - Frontend changes -> `frontend-reviewer`
23
+ - Documentation changes -> `doc-reviewer`
24
+ - CI/test changes -> `test-reviewer`
25
+ - All changes -> `general-reviewer`
26
+
27
+ ### 3. Verify Documentation
28
+ If feature code changed, check that relevant docs were updated.
29
+
30
+ ### 4. Post Review
31
+ ```bash
32
+ gh pr comment <pr-number> --body "## Code Review
33
+
34
+ **Files reviewed:** [count] files across [categories]
35
+
36
+ ### Critical Issues
37
+ [list or 'None found']
38
+
39
+ ### Important Issues
40
+ [list or 'None found']
41
+
42
+ ### Minor Issues
43
+ [list or 'None found']
44
+
45
+ ### Summary
46
+ [overall assessment]
47
+
48
+ ---
49
+ *Generated by Claude — reply with \`/address-review <pr-number>\` to work through findings*"
50
+ ```
51
+
52
+ For specific findings, use inline PR comments where appropriate.