agents-templated 2.2.10 → 2.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +100 -86
  2. package/agents/commands/README.md +64 -0
  3. package/agents/commands/SCHEMA.md +22 -0
  4. package/agents/commands/arch-check.md +58 -0
  5. package/agents/commands/audit.md +58 -0
  6. package/agents/commands/debug-track.md +58 -0
  7. package/agents/commands/docs.md +58 -0
  8. package/agents/commands/fix.md +58 -0
  9. package/agents/commands/learn-loop.md +58 -0
  10. package/agents/commands/perf.md +58 -0
  11. package/agents/commands/plan.md +58 -0
  12. package/agents/commands/pr.md +58 -0
  13. package/agents/commands/problem-map.md +58 -0
  14. package/agents/commands/release-ready.md +58 -0
  15. package/agents/commands/release.md +58 -0
  16. package/agents/commands/risk-review.md +58 -0
  17. package/agents/commands/scope-shape.md +58 -0
  18. package/agents/commands/task.md +58 -0
  19. package/agents/commands/test.md +58 -0
  20. package/agents/commands/ux-bar.md +58 -0
  21. package/agents/rules/planning.mdc +69 -0
  22. package/bin/cli.js +116 -4
  23. package/index.js +12 -1
  24. package/lib/workflow.js +177 -0
  25. package/package.json +2 -1
  26. package/templates/CLAUDE.md +5 -0
  27. package/templates/README.md +103 -61
  28. package/templates/agents/commands/README.md +43 -3
  29. package/templates/agents/commands/arch-check.md +58 -0
  30. package/templates/agents/commands/audit.md +58 -38
  31. package/templates/agents/commands/debug-track.md +58 -0
  32. package/templates/agents/commands/docs.md +58 -34
  33. package/templates/agents/commands/fix.md +58 -34
  34. package/templates/agents/commands/learn-loop.md +58 -0
  35. package/templates/agents/commands/perf.md +58 -34
  36. package/templates/agents/commands/plan.md +58 -34
  37. package/templates/agents/commands/pr.md +58 -35
  38. package/templates/agents/commands/problem-map.md +58 -0
  39. package/templates/agents/commands/release-ready.md +58 -0
  40. package/templates/agents/commands/release.md +58 -39
  41. package/templates/agents/commands/risk-review.md +58 -0
  42. package/templates/agents/commands/scope-shape.md +58 -0
  43. package/templates/agents/commands/task.md +58 -35
  44. package/templates/agents/commands/test.md +58 -34
  45. package/templates/agents/commands/ux-bar.md +58 -0
  46. package/templates/agents/skills/README.md +15 -0
  47. package/templates/agents/skills/debug-skill/SKILL.md +39 -0
  48. package/templates/agents/skills/emilkowalski-skill/SKILL.md +51 -0
  49. package/templates/agents/skills/feature-forge/SKILL.md +39 -0
  50. package/templates/agents/skills/raphaelsalaja-userinterface-wiki/SKILL.md +51 -0
  51. package/templates/agents/skills/secure-code-guardian/SKILL.md +39 -0
  52. package/templates/agents/commands/refactor.md +0 -34
  53. package/templates/agents/commands/scaffold.md +0 -34
@@ -1,39 +1,58 @@
1
- # /release
2
-
3
- ## A. Intent
4
- Produce deterministic release readiness decision and rollout contract.
5
-
6
- ## B. When to Use
7
- Use when promoting validated changes to release channels.
8
-
9
- ## C. Required Inputs
10
- - Version/tag
11
- - Change manifest
12
- - Rollback strategy
13
- - Hardening verification evidence (when required by risk profile)
14
-
15
- ## D. Deterministic Execution Flow
16
- 1. Validate release prerequisites.
17
- 2. Validate compatibility and migration risks.
18
- 3. Validate security and test gates.
19
- 4. Validate hardening verification evidence when hardening-required profile applies.
20
- 5. Build release notes.
21
- 6. Build rollout and rollback steps.
22
- 7. Emit release contract.
23
-
24
- ## E. Structured Output Template
25
- - `version`
26
- - `release_readiness`
27
- - `gates[]`
28
- - `rollout_plan[]`
29
- - `rollback_plan[]`
30
- - `release_notes`
31
- - `hardening_verification`
32
-
33
- ## F. Stop Conditions
34
- - Gate failure.
35
- - Missing rollback strategy.
36
-
37
- ## G. Safety Constraints
38
- - Block release when any critical gate fails.
39
- - Block release when required hardening evidence is missing.
1
+ # /release
2
+
3
+ ## A. Intent
4
+ Generate deterministic release decision package with rollout and rollback readiness.
5
+
6
+ ## B. When to Use
7
+ - Use when deciding whether to ship to production.
8
+ - Do not use before release-ready checks are complete.
9
+
10
+ ## C. Context Assumptions
11
+ - Release candidate is identified.
12
+ - Pre-release checks are completed.
13
+ - Rollback strategy is defined.
14
+
15
+ ## D. Required Inputs
16
+ | Input | Type | Example |
17
+ |---------------------|------------|----------------------------------|
18
+ | `version` | string | "v2.4.0" |
19
+ | `gate_results` | string[] | ["tests-pass", "risk-review-pass"] |
20
+ | `release_artifacts` | artifact | release notes draft, migration plan |
21
+
22
+ ## E. Pre-Execution Guards <- fail fast, check ALL before running
23
+ - [ ] version is valid and unique
24
+ - [ ] required gates are complete
25
+ - [ ] rollback plan exists
26
+
27
+ ## F. Execution Flow
28
+ 1. Collect gate outputs and release artifacts.
29
+ 2. Validate rollout and rollback prerequisites.
30
+ 3. Classify release risk.
31
+ 4. Decision point ->
32
+ - condition A -> high unresolved risk -> block release
33
+ - condition B -> acceptable risk -> continue.
34
+ 5. Build release decision and communication payload.
35
+ 6. Emit release package.
36
+
37
+ ## G. Output Schema
38
+
39
+ ```json
40
+ {
41
+ "release_id": "string",
42
+ "gates": ["array","of","strings"],
43
+ "release_risk": "low | medium | high",
44
+ "rollback_status": "string | null"
45
+ }
46
+ ```
47
+
48
+ ## H. Output Target
49
+ - Default delivery: stdout
50
+ - Override flag: --output=<target>
51
+
52
+ ## I. Stop Conditions <- abort with error message, never emit partial output
53
+ - required gate missing or failed
54
+ - rollback plan is undefined
55
+
56
+ ## J. Safety Constraints
57
+ - Hard block: hard block on unresolved high-severity release risks
58
+ - Warn only: warn when rollout is phased due to uncertainty
@@ -0,0 +1,58 @@
1
+ # /risk-review
2
+
3
+ ## A. Intent
4
+ Perform deterministic release risk review with mitigation and rollback readiness.
5
+
6
+ ## B. When to Use
7
+ - Use before merge or release approval on non-trivial changes.
8
+ - Do not use as a substitute for running tests.
9
+
10
+ ## C. Context Assumptions
11
+ - Change set is available.
12
+ - Validation evidence exists.
13
+ - Deployment context is known.
14
+
15
+ ## D. Required Inputs
16
+ | Input | Type | Example |
17
+ |---------------------|------------|----------------------------------|
18
+ | `change_set` | string | "payment retry + queue changes" |
19
+ | `validation_status` | string[] | ["unit pass", "integration pass"] |
20
+ | `deployment_artifact` | artifact | rollout plan, env config snapshot |
21
+
22
+ ## E. Pre-Execution Guards <- fail fast, check ALL before running
23
+ - [ ] change set is fully described
24
+ - [ ] validation status is current
25
+ - [ ] rollback path is defined
26
+
27
+ ## F. Execution Flow
28
+ 1. Inspect behavior deltas and blast radius.
29
+ 2. Rank risks by impact and likelihood.
30
+ 3. Validate mitigations and rollback readiness.
31
+ 4. Decision point ->
32
+ - condition A -> high unresolved risk -> block recommendation
33
+ - condition B -> acceptable risk -> continue.
34
+ 5. Build release risk summary and actions.
35
+ 6. Emit risk review report.
36
+
37
+ ## G. Output Schema
38
+
39
+ ```json
40
+ {
41
+ "review_id": "string",
42
+ "risks": ["array","of","strings"],
43
+ "risk_level": "low | medium | high",
44
+ "recommendation": "string | null"
45
+ }
46
+ ```
47
+
48
+ ## H. Output Target
49
+ - Default delivery: stdout
50
+ - Override flag: --output=<target>
51
+
52
+ ## I. Stop Conditions <- abort with error message, never emit partial output
53
+ - high-severity risk has no mitigation
54
+ - rollback readiness is undefined
55
+
56
+ ## J. Safety Constraints
57
+ - Hard block: hard block on unresolved high-severity risks
58
+ - Warn only: warn when medium risks are accepted with owner
@@ -0,0 +1,58 @@
1
+ # /scope-shape
2
+
3
+ ## A. Intent
4
+ Constrain delivery scope to the smallest high-value reversible release.
5
+
6
+ ## B. When to Use
7
+ - Use after problem framing and before architectural design.
8
+ - Do not use when requirements are already contractually frozen.
9
+
10
+ ## C. Context Assumptions
11
+ - Problem map exists.
12
+ - Candidate feature list exists.
13
+ - Delivery constraints are known.
14
+
15
+ ## D. Required Inputs
16
+ | Input | Type | Example |
17
+ |---------------------|------------|----------------------------------|
18
+ | `scope_goal` | string | "ship MVP in 2 weeks" |
19
+ | `candidate_items` | string[] | ["email login", "social login", "tutorial"] |
20
+ | `constraint_artifact` | artifact | timeline doc, staffing snapshot |
21
+
22
+ ## E. Pre-Execution Guards <- fail fast, check ALL before running
23
+ - [ ] scope goal is explicit
24
+ - [ ] candidate items are ranked
25
+ - [ ] out-of-scope list can be produced
26
+
27
+ ## F. Execution Flow
28
+ 1. Rank candidate items by value and effort.
29
+ 2. Draft in-scope and out-of-scope sets.
30
+ 3. Check scope against constraints.
31
+ 4. Decision point ->
32
+ - condition A -> scope exceeds constraints -> trim to MVP
33
+ - condition B -> feasible scope -> continue.
34
+ 5. Build scope rationale and tradeoffs.
35
+ 6. Emit scope decision package.
36
+
37
+ ## G. Output Schema
38
+
39
+ ```json
40
+ {
41
+ "scope_id": "string",
42
+ "scope_in": ["array","of","strings"],
43
+ "confidence": "low | medium | high",
44
+ "scope_out": "string | null"
45
+ }
46
+ ```
47
+
48
+ ## H. Output Target
49
+ - Default delivery: stdout
50
+ - Override flag: --output=<target>
51
+
52
+ ## I. Stop Conditions <- abort with error message, never emit partial output
53
+ - scope cannot satisfy constraints
54
+ - no explicit out-of-scope definition is produced
55
+
56
+ ## J. Safety Constraints
57
+ - Hard block: hard block on hidden scope creep
58
+ - Warn only: warn when deferred items carry significant risk
@@ -1,35 +1,58 @@
1
- # /task
2
-
3
- ## A. Intent
4
- Convert a plan item into a deterministic execution task.
5
-
6
- ## B. When to Use
7
- Use for bounded work with clear acceptance criteria.
8
-
9
- ## C. Required Inputs
10
- - Task identifier
11
- - Acceptance criteria
12
- - Allowed scope
13
-
14
- ## D. Deterministic Execution Flow
15
- 1. Resolve task identifier.
16
- 2. Validate acceptance criteria completeness.
17
- 3. Validate scope boundaries.
18
- 4. Define execution steps.
19
- 5. Define verification steps.
20
- 6. Emit task contract.
21
-
22
- ## E. Structured Output Template
23
- - `task_id`
24
- - `objective`
25
- - `allowed_scope`
26
- - `execution_steps[]`
27
- - `verification_steps[]`
28
- - `acceptance_criteria[]`
29
-
30
- ## F. Stop Conditions
31
- - Unknown task identifier.
32
- - Missing acceptance criteria.
33
-
34
- ## G. Safety Constraints
35
- - Reject out-of-scope changes.
1
+ # /task
2
+
3
+ ## A. Intent
4
+ Convert approved plans into deterministic, execution-ready task batches.
5
+
6
+ ## B. When to Use
7
+ - Use when a plan exists and work must be distributed to implementers.
8
+ - Do not use before planning is complete.
9
+
10
+ ## C. Context Assumptions
11
+ - An approved plan exists.
12
+ - Owners and execution context are known.
13
+ - Dependencies can be sequenced.
14
+
15
+ ## D. Required Inputs
16
+ | Input | Type | Example |
17
+ |---------------------|------------|----------------------------------|
18
+ | `plan_id` | string | "plan-2026-04-03" |
19
+ | `task_scope` | string[] | ["api", "ui", "tests"] |
20
+ | `source_artifacts` | artifact | plan file path or issue board URL |
21
+
22
+ ## E. Pre-Execution Guards <- fail fast, check ALL before running
23
+ - [ ] plan exists and is approved
24
+ - [ ] task scope maps to explicit plan items
25
+ - [ ] dependency order is resolvable
26
+
27
+ ## F. Execution Flow
28
+ 1. Read plan outputs and dependency graph.
29
+ 2. Split work into atomic tasks.
30
+ 3. Assign execution order and ownership metadata.
31
+ 4. Decision point ->
32
+ - condition A -> blocking dependency found -> move item to blocked queue
33
+ - condition B -> no blockers -> keep in active queue.
34
+ 5. Build task package with acceptance checks.
35
+ 6. Emit task list and execution order.
36
+
37
+ ## G. Output Schema
38
+
39
+ ```json
40
+ {
41
+ "task_batch_id": "string",
42
+ "tasks": ["array","of","strings"],
43
+ "priority": "low | medium | high",
44
+ "blocker": "string | null"
45
+ }
46
+ ```
47
+
48
+ ## H. Output Target
49
+ - Default delivery: stdout
50
+ - Override flag: --output=<target>
51
+
52
+ ## I. Stop Conditions <- abort with error message, never emit partial output
53
+ - plan_id is missing or invalid
54
+ - critical dependency cannot be resolved
55
+
56
+ ## J. Safety Constraints
57
+ - Hard block: no task emission without traceability to a plan item
58
+ - Warn only: warn when owner assignment is temporary
@@ -1,34 +1,58 @@
1
- # /test
2
-
3
- ## A. Intent
4
- Generate or execute deterministic test plans and test artifacts.
5
-
6
- ## B. When to Use
7
- Use for feature validation, regression prevention, and release readiness.
8
-
9
- ## C. Required Inputs
10
- - Target scope
11
- - Test level
12
- - Expected behavior
13
-
14
- ## D. Deterministic Execution Flow
15
- 1. Resolve test scope.
16
- 2. Map behavior to test cases.
17
- 3. Execute or generate tests.
18
- 4. Capture pass/fail artifacts.
19
- 5. Classify failures.
20
- 6. Emit test report.
21
-
22
- ## E. Structured Output Template
23
- - `scope`
24
- - `test_matrix[]`
25
- - `execution_results[]`
26
- - `coverage_delta`
27
- - `failures[]`
28
-
29
- ## F. Stop Conditions
30
- - Unavailable runtime.
31
- - Undefined scope.
32
-
33
- ## G. Safety Constraints
34
- - Do not mark success if critical tests are skipped.
1
+ # /test
2
+
3
+ ## A. Intent
4
+ Run deterministic validation and gate release readiness based on test evidence.
5
+
6
+ ## B. When to Use
7
+ - Use when validating behavior after implementation or before merge/release.
8
+ - This command now includes quality-gate behavior; do not use /quality-gate.
9
+
10
+ ## C. Context Assumptions
11
+ - Test targets are defined.
12
+ - Required environments are available.
13
+ - Pass/fail criteria are explicit.
14
+
15
+ ## D. Required Inputs
16
+ | Input | Type | Example |
17
+ |---------------------|------------|----------------------------------|
18
+ | `test_scope` | string | "api regression" |
19
+ | `test_suites` | string[] | ["unit", "integration", "critical-flow"] |
20
+ | `evidence_artifact` | artifact | test report path or CI run URL |
21
+
22
+ ## E. Pre-Execution Guards <- fail fast, check ALL before running
23
+ - [ ] test scope is non-empty
24
+ - [ ] critical test suites are executable
25
+ - [ ] pass criteria are declared
26
+
27
+ ## F. Execution Flow
28
+ 1. Collect test targets and runtime config.
29
+ 2. Execute suites in deterministic order.
30
+ 3. Aggregate results and failures.
31
+ 4. Decision point ->
32
+ - condition A -> critical failures present -> gate = blocked
33
+ - condition B -> no critical failures -> gate = pass.
34
+ 5. Build validation evidence and remediation list.
35
+ 6. Emit test and gate report.
36
+
37
+ ## G. Output Schema
38
+
39
+ ```json
40
+ {
41
+ "test_run_id": "string",
42
+ "results": ["array","of","strings"],
43
+ "gate_status": "low | medium | high",
44
+ "blocker": "string | null"
45
+ }
46
+ ```
47
+
48
+ ## H. Output Target
49
+ - Default delivery: stdout
50
+ - Override flag: --output=<target>
51
+
52
+ ## I. Stop Conditions <- abort with error message, never emit partial output
53
+ - critical test suite cannot run
54
+ - result schema cannot be produced
55
+
56
+ ## J. Safety Constraints
57
+ - Hard block: hard block when critical flow tests fail
58
+ - Warn only: warn when flaky tests are excluded with justification
@@ -0,0 +1,58 @@
1
+ # /ux-bar
2
+
3
+ ## A. Intent
4
+ Assess UX quality bar and guarantee core interaction states are defined before build.
5
+
6
+ ## B. When to Use
7
+ - Use when UX quality and accessibility need pre-implementation validation.
8
+ - Do not use as a replacement for visual design exploration.
9
+
10
+ ## C. Context Assumptions
11
+ - Scope and architecture are available.
12
+ - Primary user flows are identified.
13
+ - Design references exist.
14
+
15
+ ## D. Required Inputs
16
+ | Input | Type | Example |
17
+ |---------------------|------------|----------------------------------|
18
+ | `ux_goal` | string | "reduce checkout friction" |
19
+ | `flows` | string[] | ["cart", "payment", "confirmation"] |
20
+ | `design_artifact` | artifact | wireframes, Figma link, screenshots |
21
+
22
+ ## E. Pre-Execution Guards <- fail fast, check ALL before running
23
+ - [ ] critical flows are enumerated
24
+ - [ ] interaction states include loading/error/empty
25
+ - [ ] accessibility checks are defined
26
+
27
+ ## F. Execution Flow
28
+ 1. Review flows and interaction states.
29
+ 2. Evaluate accessibility and usability risks.
30
+ 3. Score UX gaps by severity.
31
+ 4. Decision point ->
32
+ - condition A -> critical UX gap -> block readiness
33
+ - condition B -> manageable gaps -> continue.
34
+ 5. Build prioritized improvement list.
35
+ 6. Emit UX quality package.
36
+
37
+ ## G. Output Schema
38
+
39
+ ```json
40
+ {
41
+ "ux_review_id": "string",
42
+ "ux_gaps": ["array","of","strings"],
43
+ "severity": "low | medium | high",
44
+ "blocker": "string | null"
45
+ }
46
+ ```
47
+
48
+ ## H. Output Target
49
+ - Default delivery: stdout
50
+ - Override flag: --output=<target>
51
+
52
+ ## I. Stop Conditions <- abort with error message, never emit partial output
53
+ - critical flow lacks defined interaction states
54
+ - accessibility baseline is not addressed
55
+
56
+ ## J. Safety Constraints
57
+ - Hard block: hard block on unaddressed critical accessibility failures
58
+ - Warn only: warn when medium UX issues are deferred
@@ -61,12 +61,22 @@ To create a new skill for your specific domain:
61
61
  │ └── SKILL.md # Systematic feature scoping and execution contracts
62
62
  ├── bug-triage/
63
63
  │ └── SKILL.md # Reproduction-first debugging and regression workflows
64
+ ├── debug-skill/
65
+ │ └── SKILL.md # Breakpoint-first debugging and execution tracing
66
+ ├── secure-code-guardian/
67
+ │ └── SKILL.md # Secure-by-default coding for auth and input boundaries
68
+ ├── feature-forge/
69
+ │ └── SKILL.md # Requirements forging before implementation starts
64
70
  ├── error-patterns/
65
71
  │ └── SKILL.md # Persistent debugging memory and known-fix application
66
72
  ├── app-hardening/
67
73
  │ └── SKILL.md # Risk-based hardening and obfuscation guidance
68
74
  ├── ui-ux-pro-max/
69
75
  │ └── SKILL.md # Premium UI/UX implementation patterns
76
+ ├── emilkowalski-skill/
77
+ │ └── SKILL.md # Frontend polish and animation quality checks
78
+ ├── raphaelsalaja-userinterface-wiki/
79
+ │ └── SKILL.md # UI hierarchy and interface best-practice playbook
70
80
  ├── my-custom-skill/
71
81
  │ └── SKILL.md # Your custom skill
72
82
  └── README.md # This file
@@ -98,9 +108,14 @@ Consider creating skills for:
98
108
 
99
109
  - `feature-delivery`: Use when user asks are broad and you need objective, scope, acceptance criteria, and validation plan.
100
110
  - `bug-triage`: Use for defects and regressions requiring reproducible evidence, root-cause isolation, and minimal safe patches.
111
+ - `debug-skill`: Use for breakpoint-driven debugging, execution tracing, and variable-state inspection.
112
+ - `secure-code-guardian`: Use for secure-by-default implementation across auth, secrets, and untrusted input.
113
+ - `feature-forge`: Use before coding to turn rough asks into execution-ready requirements and acceptance criteria.
101
114
  - `error-patterns`: Use when errors repeat to apply known fixes from lessons-learned and automatically record new resolutions.
102
115
  - `app-hardening`: Use for high-risk/distributed runtimes to enforce hardening profile, obfuscation decisions, and release evidence.
103
116
  - `shadcn-ui`: Use for shadcn/ui installation, component composition, form patterns, and theme customization.
117
+ - `emilkowalski-skill`: Use for frontend animation, micro-interaction quality, and visual polish passes.
118
+ - `raphaelsalaja-userinterface-wiki`: Use for interface hierarchy, readability, and UX consistency audits.
104
119
 
105
120
  ## Using Skills in Your Project
106
121
 
@@ -0,0 +1,39 @@
1
+ ---
2
+ name: debug-skill
3
+ description: Enables breakpoint-driven debugging workflows with execution tracing, state inspection, and root-cause proof before patching.
4
+ ---
5
+
6
+ # Debug Skill
7
+
8
+ Use this skill when the user is stuck on a bug and needs debugger-style investigation instead of print-guessing.
9
+
10
+ ## Trigger Conditions
11
+
12
+ - User asks to debug, set breakpoints, step through code, or inspect runtime state.
13
+ - A bug is intermittent, difficult to localize, or likely branch/state dependent.
14
+ - Existing logs are insufficient to prove root cause.
15
+
16
+ ## Workflow
17
+
18
+ 1. Confirm a reproducible scenario and expected vs actual behavior.
19
+ 2. Define a checkpoint plan (breakpoints/log points/frames).
20
+ 3. Trace execution order across checkpoints.
21
+ 4. Capture variable-state transitions at failure boundaries.
22
+ 5. Prove root cause with execution evidence.
23
+ 6. Apply the smallest safe patch and run focused regressions.
24
+
25
+ ## Output Contract
26
+
27
+ - Reproduction summary
28
+ - Checkpoint plan
29
+ - Execution trace highlights
30
+ - State snapshots at critical steps
31
+ - Root-cause finding
32
+ - Minimal patch plan
33
+ - Regression checks and residual risk
34
+
35
+ ## Guardrails
36
+
37
+ - Do not ship speculative fixes without trace-backed evidence.
38
+ - Do not skip regression validation after state-sensitive fixes.
39
+ - If reproduction fails, stop and request missing runtime context.
@@ -0,0 +1,51 @@
1
+ ---
2
+ name: emilkowalski-skill
3
+ description: Frontend interaction and motion quality checks for polished, minimal UI.
4
+ ---
5
+
6
+ # Emil Kowalski Frontend Polish
7
+
8
+ Use this skill when refining frontend motion, interaction quality, and visual clarity.
9
+
10
+ ## Trigger Conditions
11
+
12
+ - User asks to improve UI quality, animations, or perceived smoothness.
13
+ - User wants cleaner interactions without heavy redesign.
14
+ - Interface feels functional but not polished.
15
+
16
+ ## Workflow
17
+
18
+ 1. Baseline the current interaction quality.
19
+ 2. Remove accidental motion (janky or decorative-only animation).
20
+ 3. Define motion hierarchy: page, section, element, micro-interaction.
21
+ 4. Tune timing and easing with consistency.
22
+ 5. Validate accessibility: reduced-motion support and focus visibility.
23
+ 6. Verify mobile and desktop interaction parity.
24
+
25
+ ## Frontend Quality Checklist
26
+
27
+ - Animation duration is intentional and consistent.
28
+ - Entry and exit transitions communicate state changes.
29
+ - Hover/focus/active states are visually distinct.
30
+ - Touch targets remain accessible on mobile.
31
+ - Layout and typography remain readable during motion.
32
+
33
+ ## Output Contract
34
+
35
+ - Interaction problems found
36
+ - Priority fixes (high/medium/low)
37
+ - Motion system decisions (duration, easing, delay)
38
+ - Accessibility checks performed
39
+ - Before/after verification notes
40
+
41
+ ## Guardrails
42
+
43
+ - Do not add animation where no UX value exists.
44
+ - Prefer CSS/transform-based transitions over layout-thrashing properties.
45
+ - Always provide a reduced-motion fallback.
46
+ - Keep performance budget visible (FPS, input latency, layout shifts).
47
+
48
+ ## Upstream Reference
49
+
50
+ - Original package command:
51
+ - npx skills add emilkowalski/skill
@@ -0,0 +1,39 @@
1
+ ---
2
+ name: feature-forge
3
+ description: Turns vague feature requests into execution-ready requirements, acceptance criteria, and validation plans before coding starts.
4
+ ---
5
+
6
+ # Feature Forge
7
+
8
+ Use this skill before implementation when feature requests are high-level, ambiguous, or under-specified.
9
+
10
+ ## Trigger Conditions
11
+
12
+ - User says build/add/create/implement without a full spec.
13
+ - Requirements are broad or mixed between business and technical language.
14
+ - Scope boundaries and acceptance criteria are unclear.
15
+
16
+ ## Workflow
17
+
18
+ 1. Restate objective and target user outcome.
19
+ 2. Define in-scope and out-of-scope boundaries.
20
+ 3. Convert asks into concrete functional requirements.
21
+ 4. Produce testable acceptance criteria.
22
+ 5. Split work into dependency-ordered slices.
23
+ 6. Define validation approach and rollback notes.
24
+
25
+ ## Output Contract
26
+
27
+ - Objective summary
28
+ - Scope in/out
29
+ - Functional requirements
30
+ - Acceptance criteria
31
+ - Implementation slices
32
+ - Validation plan
33
+ - Risks, assumptions, and rollback notes
34
+
35
+ ## Guardrails
36
+
37
+ - Do not move to implementation planning without explicit scope boundaries.
38
+ - Keep acceptance criteria measurable and testable.
39
+ - Raise blockers when requirements conflict or remain ambiguous.