devkit.prompt-optimize
Provides expert prompt optimization using advanced techniques (CoT, few-shot, constitutional AI) for LLM performance enhancement. Use when you need to improve…
Mark a feature as completed (passed) or failed
> /plugin marketplace add giuseppe-trisciuoglio/developer-kit > /plugin install developer-kit@developer-kit
How it fires
How this command gets triggered: by you, by Claude, or both.
/devkit.lra.mark-featureContext preview
What this command does when you run it.
Mark a feature as completed (passed) or failed
description: Mark a feature as completed (passed) or failed allowed-tools: Read, Write, Edit argument-hint: "[feature-id] [passed|failed] [optional-notes]"
Update the status of a feature in the feature list.
/developer-kit:devkit.lra.mark-feature F012 passed /developer-kit:devkit.lra.mark-feature F015 failed API rate limiting not yet implemented /developer-kit:devkit.lra.mark-feature F023 passed Implemented with Redis caching
1. Read `.lra/feature-list.json`
2. Find the feature with ID = `$1`
3. Update the feature:
**If marking as `passed`:**
{
"status": "passed",
"completed_at": "ISO timestamp",
"notes": "$3 (if provided)"
}**If marking as `failed`:**
{
"status": "failed",
"completed_at": null,
"notes": "$3 (required - explain why it failed)"
}4. Save the updated feature-list.json
Confirm the status update:
✅ Feature Updated ID: F012 Description: User can create a new account Status: passed ✓ Completed: 2024-01-15T14:32:00Z Notes: Implemented with email verification Progress: 6/42 features completed (14%)
Or for failures:
⚠️ Feature Marked as Failed ID: F015 Description: API rate limiting per user Status: failed ✗ Notes: API rate limiting not yet implemented - needs Redis setup first This feature remains in the backlog for future implementation.
**Agent Selection**: To execute this LRA task, use the following approach:
Modular plugin marketplace for Claude Code and agentic CLIs, with validated, spec-driven skills, agents, commands, and workflows for Java, TypeScript, Python, PHP, AWS, and AI.
Repo: giuseppe-trisciuoglio/developer-kit
Provides expert prompt optimization using advanced techniques (CoT, few-shot, constitutional AI) for LLM performance enhancement. Use when you need to improve…
Provides guided feature development capability with codebase understanding and architecture focus. Use when implementing a new feature from scratch.
Provides guided bug fixing and debugging capability with systematic root cause analysis. Use when encountering bugs, errors, or unexpected behavior.
Creates a GitHub pull request with branch creation, commits, and detailed description. Use when you need to submit changes for review.
Provides comprehensive GitHub pull request review with code quality, security, and best practices analysis. Use when reviewing a PR before merging.
Provides guided code refactoring capability with deep codebase understanding, compatibility options, and comprehensive verification. Use when restructuring or…