Agent skill
skills-manojparvathaneni-ai-engineeri
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/skills-manojparvathaneni-ai-engineeri
SKILL.md
Project Development Skill
Structure
project-XX-name/
├── README.md
├── pyproject.toml # Dependencies managed by uv
├── .venv/ # Created by uv (gitignored)
├── src/
├── tests/
├── config/
└── data/
Package Management (uv)
Scripts with Inline Dependencies
# /// script
# requires-python = ">=3.10"
# dependencies = ["numpy", "requests"]
# ///
# Your code here
Run: uv run script.py
Projects with pyproject.toml
[project]
name = "project-name"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.109.0",
"anthropic>=0.18.0",
]
[project.optional-dependencies]
dev = ["pytest", "black"]
Commands:
uv init # Create new project
uv add fastapi anthropic # Add dependencies
uv add --dev pytest # Add dev dependency
uv sync # Install all deps
uv run python main.py # Run with deps
uv run pytest # Run tests
Cross-Platform
- Use pathlib for paths
- Use python-dotenv for secrets
- Test on WSL/Linux/Mac
Common Patterns
- FastAPI for backends
- React for frontends
- anthropic/openai for LLM clients
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?