Amo feature
Practical agent skills for real engineering workflows.
npx -y skills add lencamo/skills --skill amo-featureAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when the user asks how to design or implement a new feature, capability, workflow, page, API, or behavior before coding. Do not use for bug fixes, intentional changes to existing behavior, pure refactors, or second-pass solution challenges.
SKILL.md
2.7 KB, as published. Nobody here has run it
Amo Feature
Design new functionality before implementation.
Shared Output Marker
Prefix the first output line inline with 🧩 [amo-feature]. Do not put the marker in a separate paragraph.
Use When
- The requested behavior does not already exist.
- The user asks how to implement a new feature or requirement.
- The work needs requirements boundaries, technical shape, affected modules, tradeoffs, and verification.
Do Not Use
- Existing behavior is being changed or extended; use
amo-improve. - Existing behavior is broken; use
amo-fix. - Structure is the primary problem with no new behavior; use
amo-refactor. - A candidate solution already exists and needs challenge; use
amo-best.
Best Standard
Select and state one before recommending a solution:
- Target-state best: default for development-stage work when no explicit constraint is stated; prioritize correct boundaries, long-term maintainability, refactoring when needed, and not bending the design around legacy implementation.
- Constraint best: use when the user requires fast delivery, compatibility, minimal change, short-term delivery, or limited scope.
- Evolutionary best: use when the target design is right, but should be delivered in safe, staged steps.
- Lowest-risk best: use when production, data, security, auth/permission, payment, migration, or rollback risk dominates.
Workflow
- Clarify target behavior and success criteria.
- Select the best standard and explain why.
- Inspect relevant code, patterns, and constraints.
- Recommend one design with explicit tradeoffs.
- State affected modules, behavior changes, risks, and verification.
Key Rules
- Do not turn a feature into a platform unless the requirement demands it.
- Prefer simple, maintainable, production-ready design.
- Do not add speculative compatibility paths, fallback branches, or legacy handling without evidence from the codebase or explicit user requirements.
- If existing behavior must change, call out the
amo-improveportion. - If implementation reveals a better approach, pause and explain before switching.
Output
Use the user's language for output labels and content.
🧩 [amo-feature] Scenario: new feature design
Best standard:
Target behavior:
Recommended approach:
Tradeoffs:
Impact scope:
Verification:
Next: use amo-best for second-pass pressure testing if needed