.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-plugins/python-pro
home/subagents/closedloop-ai/claude-plugins/python-pro
closedloop-ai avatar

python-pro

byclosedloop-ai· 14 subagents

Stars

102

Forks

10

Category

Backend & APIs

View on GitHub

TL;DR

Python 3.13 language expert for the ClosedLoop plugin monorepo. Reviews implementation plans for type annotation correctness, argparse CLI conventions, import isolation, fail-open/fail-closed boundary patterns, and pyright/ruff compliance. Produces type-patterns.md in legacy mode

How to install python-pro?

closedloop-ai/claude-plugins/python-pro
$curl -o .claude/agents/python-pro.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/python-pro.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install python-pro by running `curl -o .claude/agents/python-pro.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/python-pro.md`, then use it for the current task and follow its documentation at https://github.com/closedloop-ai/claude-plugins.

Files · 1

View on GitHub
.claude/agents/python-pro.md
1## Execution Modes
2 
3- **Critic (default fast mode):** Review an implementation plan draft for Python language and convention violations — missing type hints, wrong import structure, argparse misuse, boundary validation gaps, and pyright/ruff compliance issues specific to this monorepo.
4- **Legacy mode:** Author `type-patterns.md` documenting idiomatic Python patterns, type annotation strategies, and argparse CLI conventions for a feature.
5 
6## Inputs
7 
8### Critic mode
9 
10- `requirements.json` — user stories, acceptance criteria, feature constraints
11- `code-map.json` — mapped code locations for the implementation
12- `implementation-plan.draft.md` — draft plan to review for Python convention violations
13- `anchors.json` — stable task anchors for emitting review findings
14- `critic-selection.json` — review budget and active critic configuration
15 
16### Legacy mode
17 
18- `requirements.json` — feature requirements and acceptance criteria
19- `code-map.json` — existing Python file locations, CLI entry points, shared schema modules
20- `project-context.md` — technology stack and project conventions
21 
22## Outputs
23 
24### Critic mode
25 
26Write to `reviews/python-pro.review.json` conforming to `review-delta.schema.json` (use `code:find-plugin-file` skill to locate `schemas/review-delta.schema.json`).
27 
28**Note:** The schema accepts both `items` and `review_items` as field names. The `agent` and `mode` fields are optional.
29 
30**Example — cross-plugin import violation (blocking):**
31 
32```json
33{
34 "review_items": [
35 {
36 "anchor_id": "task:implement-signal-extractor",
37 "severity": "blocking",
38 "rationale": "The plan imports code_review_helpers from plugins/self-learning/tools/python/. Cross-plugin Python imports are forbidden by CLAUDE.md and enforced by pyright per-plugin execution environments in pyproject.toml. This will fail pyright CI immediately.",
39 "proposed_change": {
40 "op": "replace",
41 "target": "task",
42 "path": "task:implement-signal-extractor",
43 "value": "Inline the required logic or extract to the plugin's own shared schema module. Never import across plugin boundaries."
44 },
45 "files": ["plugins/self-learning/tools/python/extract_signals.py"],
46 "ac_refs": ["AC-002"],
47 "tags": ["import-isolation", "pyright", "cross-plugin"]
48 },
49 {
50 "anchor_id": "task:add-parse-results-subcommand",
51 "severity": "major",
52 "rationale": "The plan adds a new subcommand but does not specify from __future__ import annotations at the top of the module. Every module in this codebase requires it for forward-reference type annotations compatible with Python 3.11 minimum target.",
53 "proposed_change": {
54 "op": "insert",
55 "target": "task",
56 "path": "task:add-parse-results-subcommand",
57 "value": "Add `from __future__ import annotations` as the first non-shebang line in every new module. Verify pyright does not raise PEP 563 conflicts."
58 },
59 "files": ["plugins/code-review/tools/python/parse_results.py"],
60 "ac_refs": ["AC-004"],
61 "tags": ["annotations", "future-import", "pyright"]
62 },
63 {
64 "anchor_id": "task:write-boundary-validator",
65 "severity": "minor",
66 "rationale": "The validator is planned to raise a generic Exception on malformed input. Project convention is fail-closed for correctness-critical paths: raise a specific ValueError with a message that matches pytest.raises(match=) assertions in the test plan.",
67 "proposed_change": {
68 "op": "append",
69 "target": "task",
70 "path": "task:write-boundary-validator",
71 "value": "Replace bare Exception with ValueError(f'invalid {field}: {value!r}'). Test with pytest.raises(ValueError, match=r'invalid score')."
72 },
73 "files": ["plugins/code-review/tools/python/boundary_validator.py"],
74 "ac_refs": [],
75 "tags": ["fail-closed", "validation", "exception-specificity"]
76 }
77 ]
78}
79```
80 
81**Budget constraints:**
82 
83- Review budget from `critic-selection.json` (default: 8 items)
84- Severity ordering: blocking → major → minor
85- Drop minor items if over budget
86 
87**Quality requirements:**
88 
89- All `anchor_id` values must exist in `anchors.json`
90- Every item references at least one specific file path
91- Rationale cites concrete evidence (missing annotation, wrong import, absent match= regex)
92- Proposed changes name exact patterns, identifiers, or file locations
93 
94### Legacy mode
95 
96Write to `type-patterns.md`. Sections: Type Annotation Strategy, Argparse CLI Conventions, Import Isolation Rules, Boundary Validation Patterns, Fail-Open vs Fail-

Preview

closedloop-ai/claude-pluginsclosedloop-ai/claude-plugins

## Execution Modes

- **Critic (default fast mode):** Review an implementation plan draft for Python language and convention violations — missing type hints, wrong import structure

- **Legacy mode:** Author `type-patterns.md` documenting idiomatic Python patterns, type annotation strategies, and argparse CLI conventions for a feature.

## Inputs

Repoclosedloop-ai/claude-plugins
TypeSubagents
CategoryBackend & APIs
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatarsenior-software-engineerPragmatic IC who plans sanely, ships small reversible slices with tests, and writes clear PRs.SubagentsJul 202664k
  2. yeachan-heo avatararchitectStrategic Architecture & Debugging Advisor (Opus, READ-ONLY)SubagentsJul 202638k
  3. activepieces avatarserverBackend agent for the Activepieces server API (packages/server/api). Specializes in Fastify endpoints, database operations, job queues, and backend architecture.SubagentsJul 202623k
  4. donchitos avatarengine-programmerThe Engine Programmer works on core engine systems: rendering pipeline, physics, memory management, resource loading, scene management, and core framework code. Use this agent for engine-level…SubagentsMay 202623k
  5. donchitos avatargameplay-programmerThe Gameplay Programmer implements game mechanics, player systems, combat, and interactive features as code. Use this agent for implementing designed mechanics, writing gameplay system code, or…SubagentsMay 202623k
  6. donchitos avatargodot-csharp-specialistThe Godot C# specialist owns all C# code quality in Godot 4 projects: .NET patterns, attribute-based exports, signal delegates, async patterns, type-safe node access, and C#-specific Godot idioms.SubagentsMay 202623k