[feat] Doc backfill, ticket-context DRY, Python language skill#67
Merged
lugassawan merged 4 commits intomainfrom May 2, 2026
Merged
[feat] Doc backfill, ticket-context DRY, Python language skill#67lugassawan merged 4 commits intomainfrom
lugassawan merged 4 commits intomainfrom
Conversation
…t-manager - Add /capture and /cleanup-merged to README commands list - Add product-manager to README subagents list - Add /capture row to catalog.md Commands table - Add product-manager row to catalog.md Subagents table - Add argument-hint frontmatter to review and security-review commands
Each command previously inlined the full trigger-pattern list (Jira keys, Atlassian/Confluence URLs, GitHub refs). Those patterns are already the canonical source of truth in skills/ticket-context/SKILL.md "When to invoke". Replace with a short invocation line that references the skill, eliminating the copy-paste surface that drifts when detection rules change.
Adds skills/language-python/SKILL.md covering: - Type hints and dataclasses (PEP 484, Protocol, TypedDict) - Error handling idioms - Context managers and generators - Concurrency: GIL caveat, asyncio TaskGroup, ProcessPoolExecutor - Pattern matching (3.10+) - Packaging: pyproject.toml, uv/poetry, virtualenvs - Testing: pytest, parametrize, pytest-asyncio - Performance: cProfile, py-spy, C extension guidance - Avoid section Also updates README and docs/catalog.md with Python in the Languages table.
… examples - commands/debug.md: strip inline trigger-pattern examples from parenthetical to match the other four DRY'd commands and prevent future drift - skills/language-python/SKILL.md: add @contextlib.contextmanager code example to Context managers section (matches peer skills' example-per-section style) - skills/language-python/SKILL.md: annotate walrus operator usage with # 3.8+ for consistency with the file's version-annotation convention
This was referenced May 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/catalog.mdfor/capture,/cleanup-merged, andproduct-managersubagent — shipped in [feat] Add /capture command and product-manager persona for portable issue capture #66 but never reflected in the contributor-facing docsargument-hintfrontmatter tocommands/review.mdandcommands/security-review.mdskills/ticket-context/SKILL.mdskills/language-python/SKILL.mdcovering type hints, errors, context managers, generators, asyncio/GIL concurrency, pattern matching, packaging (uv/poetry/pyproject.toml), pytest, and performanceTest Plan
bash scripts/validate.shpasses (All checks passed)grep capture\|cleanup-merged\|product-manager README.md docs/catalog.md— all 3 items confirmed presentgrep language-python README.md docs/catalog.md— Python in both Languages surfacesCloses #8