agents-templated 2.2.9 → 2.2.11
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.
- package/README.md +101 -86
- package/agents/commands/README.md +70 -0
- package/agents/commands/SCHEMA.md +22 -0
- package/agents/commands/arch-check.md +33 -0
- package/agents/commands/audit.md +38 -0
- package/agents/commands/debug-track.md +33 -0
- package/agents/commands/docs-sync.md +33 -0
- package/agents/commands/docs.md +34 -0
- package/agents/commands/fix.md +34 -0
- package/agents/commands/learn-loop.md +33 -0
- package/agents/commands/perf-scan.md +33 -0
- package/agents/commands/perf.md +34 -0
- package/agents/commands/plan.md +34 -0
- package/agents/commands/pr.md +35 -0
- package/agents/commands/problem-map.md +33 -0
- package/agents/commands/quality-gate.md +33 -0
- package/agents/commands/refactor.md +34 -0
- package/agents/commands/release-ready.md +33 -0
- package/agents/commands/release.md +39 -0
- package/agents/commands/risk-review.md +33 -0
- package/agents/commands/scaffold.md +34 -0
- package/agents/commands/scope-shape.md +33 -0
- package/agents/commands/task.md +35 -0
- package/agents/commands/test.md +34 -0
- package/agents/commands/ux-bar.md +33 -0
- package/agents/rules/planning.mdc +69 -0
- package/bin/cli.js +116 -4
- package/index.js +12 -1
- package/lib/workflow.js +190 -0
- package/package.json +2 -1
- package/templates/.claude/agents/README.md +13 -1
- package/templates/.claude/agents/compatibility-checker.md +79 -0
- package/templates/.claude/agents/configuration-validator.md +85 -0
- package/templates/.claude/agents/database-migrator.md +83 -0
- package/templates/.claude/agents/dependency-auditor.md +92 -0
- package/templates/.claude/agents/load-tester.md +80 -0
- package/templates/.claude/agents/performance-profiler.md +103 -0
- package/templates/CLAUDE.md +8 -0
- package/templates/README.md +104 -61
- package/templates/agents/commands/README.md +47 -1
- package/templates/agents/commands/arch-check.md +33 -0
- package/templates/agents/commands/debug-track.md +33 -0
- package/templates/agents/commands/docs-sync.md +33 -0
- package/templates/agents/commands/learn-loop.md +33 -0
- package/templates/agents/commands/perf-scan.md +33 -0
- package/templates/agents/commands/problem-map.md +33 -0
- package/templates/agents/commands/quality-gate.md +33 -0
- package/templates/agents/commands/release-ready.md +33 -0
- package/templates/agents/commands/risk-review.md +33 -0
- package/templates/agents/commands/scope-shape.md +33 -0
- package/templates/agents/commands/ux-bar.md +33 -0
- package/templates/agents/skills/README.md +6 -0
- package/templates/agents/skills/emilkowalski-skill/SKILL.md +51 -0
- package/templates/agents/skills/raphaelsalaja-userinterface-wiki/SKILL.md +51 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# /risk-review
|
|
2
|
+
|
|
3
|
+
## A. Intent
|
|
4
|
+
Identify release risks that may pass CI but fail in production.
|
|
5
|
+
|
|
6
|
+
## B. When to Use
|
|
7
|
+
Use before merge or release candidate approval.
|
|
8
|
+
|
|
9
|
+
## C. Required Inputs
|
|
10
|
+
- Proposed changes
|
|
11
|
+
- Test and validation status
|
|
12
|
+
- Deployment context
|
|
13
|
+
|
|
14
|
+
## D. Deterministic Execution Flow
|
|
15
|
+
1. Inspect behavior deltas.
|
|
16
|
+
2. Rank risks by impact and likelihood.
|
|
17
|
+
3. Validate mitigation or rollback paths.
|
|
18
|
+
4. Identify missing tests.
|
|
19
|
+
5. Emit ship recommendation.
|
|
20
|
+
|
|
21
|
+
## E. Structured Output Template
|
|
22
|
+
- `risk_findings[]`
|
|
23
|
+
- `severity_summary`
|
|
24
|
+
- `mitigations[]`
|
|
25
|
+
- `rollback_readiness`
|
|
26
|
+
- `release_recommendation`
|
|
27
|
+
|
|
28
|
+
## F. Stop Conditions
|
|
29
|
+
- High-severity risk has no mitigation.
|
|
30
|
+
- Rollback path is undefined.
|
|
31
|
+
|
|
32
|
+
## G. Safety Constraints
|
|
33
|
+
- Block release for unresolved high-severity findings.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# /scope-shape
|
|
2
|
+
|
|
3
|
+
## A. Intent
|
|
4
|
+
Constrain scope to the smallest high-leverage release that still proves value.
|
|
5
|
+
|
|
6
|
+
## B. When to Use
|
|
7
|
+
Use after problem framing and before architecture planning.
|
|
8
|
+
|
|
9
|
+
## C. Required Inputs
|
|
10
|
+
- Problem frame
|
|
11
|
+
- Candidate feature list
|
|
12
|
+
- Delivery constraints
|
|
13
|
+
|
|
14
|
+
## D. Deterministic Execution Flow
|
|
15
|
+
1. Rank features by impact and effort.
|
|
16
|
+
2. Define must-have vs defer list.
|
|
17
|
+
3. Freeze first-release boundaries.
|
|
18
|
+
4. Add explicit out-of-scope items.
|
|
19
|
+
5. Emit scope decision rationale.
|
|
20
|
+
|
|
21
|
+
## E. Structured Output Template
|
|
22
|
+
- `scope_in[]`
|
|
23
|
+
- `scope_out[]`
|
|
24
|
+
- `tradeoffs[]`
|
|
25
|
+
- `release_goal`
|
|
26
|
+
- `defer_queue[]`
|
|
27
|
+
|
|
28
|
+
## F. Stop Conditions
|
|
29
|
+
- Scope still exceeds constraints.
|
|
30
|
+
- No out-of-scope list produced.
|
|
31
|
+
|
|
32
|
+
## G. Safety Constraints
|
|
33
|
+
- Prefer one reversible release over broad irreversible scope.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# /ux-bar
|
|
2
|
+
|
|
3
|
+
## A. Intent
|
|
4
|
+
Set a minimum UX quality bar with clear criteria before UI implementation.
|
|
5
|
+
|
|
6
|
+
## B. When to Use
|
|
7
|
+
Use when a feature has user-facing interaction or visual design impact.
|
|
8
|
+
|
|
9
|
+
## C. Required Inputs
|
|
10
|
+
- Target user flow
|
|
11
|
+
- Existing design language
|
|
12
|
+
- Accessibility requirements
|
|
13
|
+
|
|
14
|
+
## D. Deterministic Execution Flow
|
|
15
|
+
1. Evaluate key interaction states.
|
|
16
|
+
2. Check visual hierarchy and clarity.
|
|
17
|
+
3. Validate accessibility coverage.
|
|
18
|
+
4. Identify UX risks and gaps.
|
|
19
|
+
5. Emit UX quality checklist.
|
|
20
|
+
|
|
21
|
+
## E. Structured Output Template
|
|
22
|
+
- `ux_scorecard[]`
|
|
23
|
+
- `interaction_states[]`
|
|
24
|
+
- `accessibility_checks[]`
|
|
25
|
+
- `ux_gaps[]`
|
|
26
|
+
- `improvements[]`
|
|
27
|
+
|
|
28
|
+
## F. Stop Conditions
|
|
29
|
+
- Critical flow has undefined state handling.
|
|
30
|
+
- Accessibility constraints are missing.
|
|
31
|
+
|
|
32
|
+
## G. Safety Constraints
|
|
33
|
+
- Preserve existing design system patterns unless an explicit redesign is approved.
|
|
@@ -67,6 +67,10 @@ To create a new skill for your specific domain:
|
|
|
67
67
|
│ └── SKILL.md # Risk-based hardening and obfuscation guidance
|
|
68
68
|
├── ui-ux-pro-max/
|
|
69
69
|
│ └── SKILL.md # Premium UI/UX implementation patterns
|
|
70
|
+
├── emilkowalski-skill/
|
|
71
|
+
│ └── SKILL.md # Frontend polish and animation quality checks
|
|
72
|
+
├── raphaelsalaja-userinterface-wiki/
|
|
73
|
+
│ └── SKILL.md # UI hierarchy and interface best-practice playbook
|
|
70
74
|
├── my-custom-skill/
|
|
71
75
|
│ └── SKILL.md # Your custom skill
|
|
72
76
|
└── README.md # This file
|
|
@@ -101,6 +105,8 @@ Consider creating skills for:
|
|
|
101
105
|
- `error-patterns`: Use when errors repeat to apply known fixes from lessons-learned and automatically record new resolutions.
|
|
102
106
|
- `app-hardening`: Use for high-risk/distributed runtimes to enforce hardening profile, obfuscation decisions, and release evidence.
|
|
103
107
|
- `shadcn-ui`: Use for shadcn/ui installation, component composition, form patterns, and theme customization.
|
|
108
|
+
- `emilkowalski-skill`: Use for frontend animation, micro-interaction quality, and visual polish passes.
|
|
109
|
+
- `raphaelsalaja-userinterface-wiki`: Use for interface hierarchy, readability, and UX consistency audits.
|
|
104
110
|
|
|
105
111
|
## Using Skills in Your Project
|
|
106
112
|
|
|
@@ -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,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: raphaelsalaja-userinterface-wiki
|
|
3
|
+
description: UI and UX best-practice playbook for stronger information architecture, readability, and usability.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# User Interface Wiki Playbook
|
|
7
|
+
|
|
8
|
+
Use this skill when improving UI clarity, hierarchy, and interaction ergonomics.
|
|
9
|
+
|
|
10
|
+
## Trigger Conditions
|
|
11
|
+
|
|
12
|
+
- User requests a frontend cleanup or UX review.
|
|
13
|
+
- Interface has weak visual hierarchy or navigation confusion.
|
|
14
|
+
- Product needs consistent UI patterns across pages.
|
|
15
|
+
|
|
16
|
+
## Workflow
|
|
17
|
+
|
|
18
|
+
1. Audit hierarchy: headings, spacing, grouping, and contrast.
|
|
19
|
+
2. Audit navigation and task flow for top user goals.
|
|
20
|
+
3. Standardize component patterns (cards, forms, tables, dialogs).
|
|
21
|
+
4. Tighten copy and labels for faster comprehension.
|
|
22
|
+
5. Validate responsive behavior at mobile, tablet, and desktop widths.
|
|
23
|
+
6. Validate accessibility semantics and keyboard flow.
|
|
24
|
+
|
|
25
|
+
## Interface Quality Checklist
|
|
26
|
+
|
|
27
|
+
- Primary action is obvious in each view.
|
|
28
|
+
- Navigation labels are unambiguous.
|
|
29
|
+
- Form errors are clear, contextual, and actionable.
|
|
30
|
+
- Empty/loading/error states are explicit.
|
|
31
|
+
- Density and spacing are consistent across sections.
|
|
32
|
+
|
|
33
|
+
## Output Contract
|
|
34
|
+
|
|
35
|
+
- UX issues grouped by severity
|
|
36
|
+
- IA and layout improvements
|
|
37
|
+
- Component consistency decisions
|
|
38
|
+
- Accessibility and responsiveness findings
|
|
39
|
+
- Validation steps and acceptance criteria
|
|
40
|
+
|
|
41
|
+
## Guardrails
|
|
42
|
+
|
|
43
|
+
- Avoid visual changes that break existing design-system tokens.
|
|
44
|
+
- Keep interaction patterns predictable and learnable.
|
|
45
|
+
- Optimize for readability before decoration.
|
|
46
|
+
- Confirm improvements with at least one critical user journey.
|
|
47
|
+
|
|
48
|
+
## Upstream Reference
|
|
49
|
+
|
|
50
|
+
- Original package command:
|
|
51
|
+
- npx skills add raphaelsalaja/userinterface-wiki
|