← Back to list

agent-ops-create-python-project
by weholt
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: agent-ops-create-python-project description: "Create a plan and issues for implementation of a production-ready Python project with proper structure, tooling, and best practices." category: extended invokes: [agent-ops-interview, agent-ops-tasks, agent-ops-planning, agent-ops-state] invoked_by: [] state_files: read: [tools/agent-ops-cli/, constitution.md, focus.md, issues/.md] write: [focus.md, issues/.md] templates: [TEMPLATES.md]
Skill: agent-ops-create-python-project
Create a plan and issues for implementation of a production-ready Python project
Templates: See TEMPLATES.md for pyproject.toml, build.py, README, AGENTS.md, .gitignore
Triggers
- User asks to create a new Python project
- User provides project requirements/discussion to convert into implementation
- User wants to scaffold a CLI tool, library, or application in Python
Procedure
Phase 1: Requirements Gathering
- If input provided: Analyze the discussion/requirements
- If no input: Interview user about:
- Project name and purpose
- Core features/commands
- External services/APIs needed
- Data processed (files, APIs, databases)
- CLI, library, or both?
- Specific dependencies?
Phase 2: Architecture Design
Extract from requirements:
- Features: List all behaviors/capabilities
- Data Models: Entities and relationships
- Dependencies: Map features to PyPI packages
- Modules: Cohesive, loosely-coupled units
- Interfaces: Public APIs per module
Phase 3: Issue Creation
Create issues for:
- Project scaffold (pyproject.toml, README, .gitignore, AGENTS.md)
- Build pipeline (scripts/build.py)
- Configuration (src/package/config.py)
- CLI layer (src/package/cli.py)
- Core modules (one issue per module)
- Test infrastructure (tests/conftest.py)
- Unit tests (tests/unit/*)
Phase 4: Plan Generation
Create plan with:
- Dependency order (scaffold → config → core → CLI → tests)
- Estimated effort per issue
- Quality gates between phases
Project Structure
project-name/
├── pyproject.toml # Config, dependencies, tools
├── README.md # Overview, install, usage
├── AGENTS.md # AI agent guidelines
├── .gitignore
├── scripts/
│ └── build.py # Build pipeline
├── src/<package>/
│ ├── __init__.py
│ ├── cli.py # Thin CLI (typer)
│ ├── config.py # Configuration
│ └── <modules>.py # Core logic
└── tests/
├── conftest.py
├── unit/
└── integration/
Code Standards
Design Principles
- SRP: One responsibility per module/function
- DRY: No duplicated logic
- Dependency Injection: Accept dependencies as parameters
Architecture Rules
- Thin CLI: Parse/format only, delegate to core
- No src imports:
from <package>notfrom src.<package> - Config via environment:
.env+python-dotenv
Function Guidelines
- Max 15 lines per function
- Max 3 levels of nesting
- Type annotations on ALL functions
Output Checklist
- All functions have type annotations
- Tests cover core logic (≥75% target)
- CLI is thin orchestration layer
- pyproject.toml is valid
- README explains
uv runusage - AGENTS.md contains guidelines
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon