Jiva feature-implementation
install
source · Clone the upstream repo
git clone https://github.com/KarmaloopAI/Jiva
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/KarmaloopAI/Jiva "$T" && mkdir -p ~/.claude/skills && cp -r "$T/examples/personas/developer/skills/implementation" ~/.claude/skills/karmaloopai-jiva-feature-implementation && rm -rf "$T"
manifest:
examples/personas/developer/skills/implementation/SKILL.mdsource content
Feature Implementation Skill
Overview
Write high-quality, production-ready code for features and bug fixes.
Workflow
- Understand Requirements: Parse task requirements thoroughly
- Plan Implementation: Identify files to create/modify
- Write Code: Implement with best practices:
- Clean, readable code
- Proper error handling
- Type safety
- Good variable/function names
- Verify: Test basic functionality
- Document: Add comments for complex logic
Code Quality Standards
- Follow language idioms and conventions
- Handle edge cases and errors
- Use appropriate data structures
- Keep functions focused and small
- Add inline comments for complex logic
Tools to Use
: For new filescreate_file
: For modificationsedit_file
: To read existing codeview
: To find code patternsgrep_search
: To run testsrun_terminal_command
Best Practices
- Read existing code before making changes
- Match the project's style and patterns
- Test changes when possible
- Leave code better than you found it