Agent-alchemy project-conventions
Guides discovery and application of project-specific conventions including code patterns, naming, structure, and team practices. Use when exploring a codebase or implementing features to match existing patterns.
git clone https://github.com/sequenzia/agent-alchemy
T=$(mktemp -d) && git clone --depth=1 https://github.com/sequenzia/agent-alchemy "$T" && mkdir -p ~/.claude/skills && cp -r "$T/ported/20260310/all/skills-flat/project-conventions" ~/.claude/skills/sequenzia-agent-alchemy-project-conventions-654d47 && rm -rf "$T"
ported/20260310/all/skills-flat/project-conventions/SKILL.mdProject Conventions
This skill guides you in discovering and applying project-specific conventions. Every codebase has its own patterns and practices - your job is to find them and follow them.
Convention Discovery Process
Step 1: Project Configuration
Check these files for explicit conventions:
Code Style:
,.eslintrc*
- JavaScript/TypeScript linting ruleseslint.config.*
,.prettierrc*
- Formatting rulesprettier.config.*
,pyproject.toml
,setup.cfg
- Python config.flake8
- Editor settings.editorconfig
,ruff.toml
- Ruff linter config.ruff.toml
Project Structure:
- TypeScript paths and settingstsconfig.json
- Scripts, dependenciespackage.json
- Python project configpyproject.toml
Documentation:
- Contribution guidelinesCONTRIBUTING.md
- AI coding guidelinesCLAUDE.md
- Project overviewREADME.md
- Extended documentationdocs/
Step 2: Existing Code Patterns
Study the codebase to find implicit conventions:
File Organization:
# Find how components are organized ls -la src/components/ # Search for test file patterns matching *.test.*, *_test.*, or test_* # Find how utilities are organized ls -la src/utils/ src/lib/ src/helpers/
Naming Patterns:
# Search file contents for exported function declarations # Search file contents for Python function definitions # Search file contents for exported class declarations # Search file contents for Python class definitions
Import Patterns:
# Search file contents for import statements to detect absolute vs relative style
Step 3: Similar Features
Find features similar to what you're building:
-
Search for similar functionality:
# If building a "user profile" feature # Search for files matching *profile* and content matching "profile" -
Study the implementation:
- How is it structured?
- What patterns does it use?
- How does it handle errors?
- How is it tested?
-
Note the patterns:
- Component structure
- State management approach
- API call patterns
- Validation approach
Common Convention Areas
Naming Conventions
Discover by example:
# Search file contents for function, variable, and component naming patterns
Common patterns:
for functions/variablescamelCase
for components/classesPascalCase
for constantsUPPER_SNAKE
for file names (some projects)kebab-case
for file names (Python)snake_case
File Structure
Discover the pattern:
# Examine component and module directory layouts
Common patterns:
Flat structure:
components/ Button.tsx Button.test.tsx Button.styles.ts
Folder per component:
components/ Button/ index.ts Button.tsx Button.test.tsx Button.module.css
Feature-based:
features/ auth/ components/ hooks/ api.ts types.ts
Error Handling
Discover the pattern:
# Search file contents for try-catch patterns, custom error types, and API error handling
Apply what you find:
- Use the same error types
- Follow the same handling pattern
- Match logging approach
Testing Patterns
Discover the pattern:
# Examine test file structure, setup files, and test utilities
Match the patterns:
- Test file location (co-located vs separate)
- Naming convention (
vs*.test.ts
)*.spec.ts - Setup and teardown approach
- Mocking strategy
- Assertion style
API Patterns
Discover the pattern:
# Search file contents for API call patterns (fetch, axios, api references) # Examine API response handling in service files
Match the patterns:
- How are endpoints defined?
- How is authentication handled?
- What's the error format?
- How are responses typed?
Convention Application Checklist
When implementing a feature, verify you're following conventions for:
Code Style
- Variable naming matches existing code
- Function naming matches existing code
- File naming follows project pattern
- Import style matches (absolute vs relative)
Structure
- File location follows project structure
- Component organization matches
- Export style matches (default vs named)
Patterns
- Error handling follows project patterns
- Async patterns match existing code
- State management follows project approach
- API calls follow established patterns
Testing
- Test file location is correct
- Test naming follows convention
- Test structure matches existing tests
- Mocking approach is consistent
Documentation
- Comments follow existing style
- JSDoc/docstrings match project
- README updates if needed
When Conventions Conflict
Sometimes you'll find inconsistent patterns:
- Prefer newer code - Recent files often reflect current team preferences
- Prefer maintained code - Active parts of the codebase reflect current practices
- Prefer documented conventions - Explicit rules in configs override implicit patterns
- Ask if unclear - When in doubt, ask the user which pattern to follow
Red Flags
Watch for these signs that you might be breaking conventions:
- Your code looks very different from surrounding code
- You're using a library/pattern not used elsewhere
- Your file structure doesn't match siblings
- Your naming feels inconsistent with the codebase
- Linting errors (the project has explicit rules you're breaking)
When you notice these, stop and investigate the existing conventions more carefully.
Integration Notes
What this component does: Guides the discovery and application of project-specific conventions to ensure new code matches existing patterns and practices.
Capabilities needed:
- File reading (to examine existing code and config files)
- File search (to discover project structure and naming patterns)
- Content search (to find coding patterns in existing files)
Adaptation guidance:
- This is a reference/knowledge skill with no orchestration logic — it works on any platform as-is
- The bash examples are illustrative; adapt search commands to whatever tooling is available in the target harness