oh-my-customcode 0.1.0
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/LICENSE +21 -0
- package/README.md +287 -0
- package/dist/cli/index.js +13299 -0
- package/dist/index.js +927 -0
- package/package.json +74 -0
- package/templates/.claude/contexts/dev.md +20 -0
- package/templates/.claude/contexts/ecomode.md +63 -0
- package/templates/.claude/contexts/index.yaml +41 -0
- package/templates/.claude/contexts/research.md +28 -0
- package/templates/.claude/contexts/review.md +23 -0
- package/templates/.claude/hooks/hooks.json +185 -0
- package/templates/.claude/hooks/hud/index.yaml +27 -0
- package/templates/.claude/hooks/hud/update-status.sh +32 -0
- package/templates/.claude/hooks/index.yaml +46 -0
- package/templates/.claude/hooks/memory-persistence/pre-compact.sh +37 -0
- package/templates/.claude/hooks/memory-persistence/session-end.sh +64 -0
- package/templates/.claude/hooks/memory-persistence/session-start.sh +41 -0
- package/templates/.claude/hooks/strategic-compact/suggest-compact.sh +50 -0
- package/templates/.claude/install-hooks.sh +100 -0
- package/templates/.claude/rules/MAY-optimization.md +93 -0
- package/templates/.claude/rules/MUST-agent-design.md +107 -0
- package/templates/.claude/rules/MUST-agent-identification.md +108 -0
- package/templates/.claude/rules/MUST-continuous-improvement.md +132 -0
- package/templates/.claude/rules/MUST-intent-transparency.md +199 -0
- package/templates/.claude/rules/MUST-language-policy.md +62 -0
- package/templates/.claude/rules/MUST-orchestrator-coordination.md +266 -0
- package/templates/.claude/rules/MUST-parallel-execution.md +341 -0
- package/templates/.claude/rules/MUST-permissions.md +84 -0
- package/templates/.claude/rules/MUST-safety.md +69 -0
- package/templates/.claude/rules/MUST-sync-verification.md +219 -0
- package/templates/.claude/rules/MUST-tool-identification.md +112 -0
- package/templates/.claude/rules/SHOULD-ecomode.md +145 -0
- package/templates/.claude/rules/SHOULD-error-handling.md +102 -0
- package/templates/.claude/rules/SHOULD-hud-statusline.md +89 -0
- package/templates/.claude/rules/SHOULD-interaction.md +103 -0
- package/templates/.claude/rules/SHOULD-memory-integration.md +114 -0
- package/templates/.claude/rules/SHOULD-pipeline-mode.md +165 -0
- package/templates/.claude/rules/index.yaml +125 -0
- package/templates/.claude/uninstall-hooks.sh +52 -0
- package/templates/CLAUDE.md.en +259 -0
- package/templates/CLAUDE.md.ko +259 -0
- package/templates/agents/index.yaml +237 -0
- package/templates/agents/infra-engineer/aws-expert/AGENT.md +47 -0
- package/templates/agents/infra-engineer/aws-expert/index.yaml +27 -0
- package/templates/agents/infra-engineer/docker-expert/AGENT.md +47 -0
- package/templates/agents/infra-engineer/docker-expert/index.yaml +27 -0
- package/templates/agents/manager/creator/AGENT.md +274 -0
- package/templates/agents/manager/creator/index.yaml +66 -0
- package/templates/agents/manager/gitnerd/AGENT.md +91 -0
- package/templates/agents/manager/gitnerd/index.yaml +55 -0
- package/templates/agents/manager/sauron/AGENT.md +153 -0
- package/templates/agents/manager/sauron/index.yaml +52 -0
- package/templates/agents/manager/supplier/AGENT.md +142 -0
- package/templates/agents/manager/supplier/index.yaml +31 -0
- package/templates/agents/manager/sync-checker/AGENT.md +34 -0
- package/templates/agents/manager/sync-checker/index.yaml +32 -0
- package/templates/agents/manager/updater/AGENT.md +125 -0
- package/templates/agents/manager/updater/index.yaml +31 -0
- package/templates/agents/orchestrator/dev-lead/AGENT.md +116 -0
- package/templates/agents/orchestrator/dev-lead/index.yaml +73 -0
- package/templates/agents/orchestrator/planner/AGENT.md +102 -0
- package/templates/agents/orchestrator/planner/index.yaml +38 -0
- package/templates/agents/orchestrator/qa-lead/AGENT.md +92 -0
- package/templates/agents/orchestrator/qa-lead/index.yaml +40 -0
- package/templates/agents/orchestrator/secretary/AGENT.md +132 -0
- package/templates/agents/orchestrator/secretary/index.yaml +55 -0
- package/templates/agents/qa-team/qa-engineer/AGENT.md +98 -0
- package/templates/agents/qa-team/qa-engineer/index.yaml +59 -0
- package/templates/agents/qa-team/qa-planner/AGENT.md +75 -0
- package/templates/agents/qa-team/qa-planner/index.yaml +47 -0
- package/templates/agents/qa-team/qa-writer/AGENT.md +98 -0
- package/templates/agents/qa-team/qa-writer/index.yaml +44 -0
- package/templates/agents/sw-architect/documenter/AGENT.md +120 -0
- package/templates/agents/sw-architect/documenter/index.yaml +39 -0
- package/templates/agents/sw-architect/speckit-agent/AGENT.md +127 -0
- package/templates/agents/sw-architect/speckit-agent/index.yaml +78 -0
- package/templates/agents/sw-engineer/backend/express-expert/AGENT.md +132 -0
- package/templates/agents/sw-engineer/backend/express-expert/index.yaml +36 -0
- package/templates/agents/sw-engineer/backend/fastapi-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/backend/fastapi-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/backend/go-backend-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/backend/go-backend-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/backend/nestjs-expert/AGENT.md +107 -0
- package/templates/agents/sw-engineer/backend/nestjs-expert/index.yaml +43 -0
- package/templates/agents/sw-engineer/backend/springboot-expert/AGENT.md +103 -0
- package/templates/agents/sw-engineer/backend/springboot-expert/index.yaml +69 -0
- package/templates/agents/sw-engineer/frontend/svelte-agent/AGENT.md +71 -0
- package/templates/agents/sw-engineer/frontend/svelte-agent/index.yaml +41 -0
- package/templates/agents/sw-engineer/frontend/vercel-agent/AGENT.md +67 -0
- package/templates/agents/sw-engineer/frontend/vercel-agent/index.yaml +43 -0
- package/templates/agents/sw-engineer/frontend/vuejs-agent/AGENT.md +71 -0
- package/templates/agents/sw-engineer/frontend/vuejs-agent/index.yaml +48 -0
- package/templates/agents/sw-engineer/language/golang-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/golang-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/java21-expert/AGENT.md +122 -0
- package/templates/agents/sw-engineer/language/java21-expert/index.yaml +51 -0
- package/templates/agents/sw-engineer/language/kotlin-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/kotlin-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/python-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/python-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/rust-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/rust-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/typescript-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/typescript-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/tooling/bun-expert/AGENT.md +73 -0
- package/templates/agents/sw-engineer/tooling/bun-expert/index.yaml +46 -0
- package/templates/agents/sw-engineer/tooling/npm-expert/AGENT.md +160 -0
- package/templates/agents/sw-engineer/tooling/npm-expert/index.yaml +45 -0
- package/templates/agents/sw-engineer/tooling/optimizer/AGENT.md +170 -0
- package/templates/agents/sw-engineer/tooling/optimizer/index.yaml +45 -0
- package/templates/agents/system/memory-keeper/AGENT.md +126 -0
- package/templates/agents/system/memory-keeper/index.yaml +45 -0
- package/templates/agents/system/naggy/AGENT.md +72 -0
- package/templates/agents/system/naggy/index.yaml +35 -0
- package/templates/commands/COMMANDS.md +136 -0
- package/templates/commands/creator/agent.md +121 -0
- package/templates/commands/dev/refactor.md +126 -0
- package/templates/commands/dev/review.md +82 -0
- package/templates/commands/git/branch.yaml +8 -0
- package/templates/commands/git/commit.yaml +4 -0
- package/templates/commands/git/pr.yaml +4 -0
- package/templates/commands/git/status.yaml +4 -0
- package/templates/commands/git/sync.yaml +4 -0
- package/templates/commands/index.yaml +225 -0
- package/templates/commands/intent/explain.md +144 -0
- package/templates/commands/memory/recall.md +164 -0
- package/templates/commands/memory/save.md +128 -0
- package/templates/commands/naggy/add.yaml +8 -0
- package/templates/commands/naggy/done.yaml +8 -0
- package/templates/commands/naggy/list.yaml +4 -0
- package/templates/commands/naggy/priority.yaml +11 -0
- package/templates/commands/naggy/remind.yaml +4 -0
- package/templates/commands/npm/audit.yaml +62 -0
- package/templates/commands/npm/publish.yaml +52 -0
- package/templates/commands/npm/version.yaml +62 -0
- package/templates/commands/optimize/analyze.yaml +34 -0
- package/templates/commands/optimize/bundle.yaml +50 -0
- package/templates/commands/optimize/report.yaml +56 -0
- package/templates/commands/pipeline/list.md +81 -0
- package/templates/commands/pipeline/run.md +127 -0
- package/templates/commands/sauron/quick.yaml +4 -0
- package/templates/commands/sauron/report.yaml +4 -0
- package/templates/commands/sauron/watch.yaml +4 -0
- package/templates/commands/supplier/audit.md +133 -0
- package/templates/commands/supplier/fix.md +121 -0
- package/templates/commands/sync/agents.yaml +4 -0
- package/templates/commands/sync/check.yaml +4 -0
- package/templates/commands/sync/commands.yaml +4 -0
- package/templates/commands/sync/docs.yaml +4 -0
- package/templates/commands/sync/fix.yaml +4 -0
- package/templates/commands/system/help.md +137 -0
- package/templates/commands/system/lists.md +86 -0
- package/templates/commands/system/status.md +163 -0
- package/templates/commands/updater/docs.md +165 -0
- package/templates/commands/updater/external.md +214 -0
- package/templates/guides/aws/common-patterns.md +169 -0
- package/templates/guides/aws/index.yaml +26 -0
- package/templates/guides/aws/well-architected.md +143 -0
- package/templates/guides/claude-code/01-overview.md +42 -0
- package/templates/guides/claude-code/03-tools.md +107 -0
- package/templates/guides/claude-code/04-agent-skills.md +90 -0
- package/templates/guides/claude-code/05-agent-sdk.md +129 -0
- package/templates/guides/claude-code/06-mcp.md +165 -0
- package/templates/guides/claude-code/07-prompt-engineering.md +100 -0
- package/templates/guides/claude-code/08-testing.md +58 -0
- package/templates/guides/claude-code/09-guardrails.md +80 -0
- package/templates/guides/claude-code/10-monitoring.md +89 -0
- package/templates/guides/claude-code/index.yaml +51 -0
- package/templates/guides/docker/compose-best-practices.md +284 -0
- package/templates/guides/docker/dockerfile-best-practices.md +262 -0
- package/templates/guides/docker/index.yaml +26 -0
- package/templates/guides/fastapi/best-practices.md +232 -0
- package/templates/guides/fastapi/index.yaml +21 -0
- package/templates/guides/go-backend/index.yaml +26 -0
- package/templates/guides/go-backend/project-layout.md +243 -0
- package/templates/guides/go-backend/uber-style.md +212 -0
- package/templates/guides/golang/concurrency.md +282 -0
- package/templates/guides/golang/effective-go.md +309 -0
- package/templates/guides/golang/error-handling.md +250 -0
- package/templates/guides/golang/index.yaml +27 -0
- package/templates/guides/index.yaml +101 -0
- package/templates/guides/kotlin/coding-conventions.md +247 -0
- package/templates/guides/kotlin/idioms.md +234 -0
- package/templates/guides/kotlin/index.yaml +26 -0
- package/templates/guides/python/index.yaml +26 -0
- package/templates/guides/python/pep8-style-guide.md +202 -0
- package/templates/guides/python/zen-of-python.md +79 -0
- package/templates/guides/rust/error-handling.md +262 -0
- package/templates/guides/rust/index.yaml +26 -0
- package/templates/guides/rust/ownership.md +180 -0
- package/templates/guides/springboot/best-practices.md +361 -0
- package/templates/guides/springboot/index.yaml +22 -0
- package/templates/guides/typescript/advanced-types.md +225 -0
- package/templates/guides/typescript/index.yaml +26 -0
- package/templates/guides/typescript/type-system.md +219 -0
- package/templates/guides/web-design/accessibility.md +66 -0
- package/templates/guides/web-design/index.yaml +20 -0
- package/templates/guides/web-design/performance.md +102 -0
- package/templates/pipelines/examples/code-review.yaml +66 -0
- package/templates/pipelines/index.yaml +18 -0
- package/templates/pipelines/templates/pipeline-template.yaml +50 -0
- package/templates/skills/backend/fastapi-best-practices/SKILL.md +269 -0
- package/templates/skills/backend/fastapi-best-practices/index.yaml +25 -0
- package/templates/skills/backend/go-backend-best-practices/SKILL.md +337 -0
- package/templates/skills/backend/go-backend-best-practices/index.yaml +26 -0
- package/templates/skills/backend/springboot-best-practices/SKILL.md +356 -0
- package/templates/skills/backend/springboot-best-practices/index.yaml +27 -0
- package/templates/skills/development/go-best-practices/SKILL.md +202 -0
- package/templates/skills/development/go-best-practices/index.yaml +25 -0
- package/templates/skills/development/kotlin-best-practices/SKILL.md +255 -0
- package/templates/skills/development/kotlin-best-practices/index.yaml +27 -0
- package/templates/skills/development/python-best-practices/SKILL.md +221 -0
- package/templates/skills/development/python-best-practices/index.yaml +25 -0
- package/templates/skills/development/react-best-practices/SKILL.md +100 -0
- package/templates/skills/development/react-best-practices/index.yaml +39 -0
- package/templates/skills/development/rust-best-practices/SKILL.md +266 -0
- package/templates/skills/development/rust-best-practices/index.yaml +26 -0
- package/templates/skills/development/typescript-best-practices/SKILL.md +320 -0
- package/templates/skills/development/typescript-best-practices/index.yaml +28 -0
- package/templates/skills/development/vercel-deploy/SKILL.md +73 -0
- package/templates/skills/development/vercel-deploy/index.yaml +30 -0
- package/templates/skills/development/web-design-guidelines/SKILL.md +117 -0
- package/templates/skills/development/web-design-guidelines/index.yaml +34 -0
- package/templates/skills/index.yaml +129 -0
- package/templates/skills/infrastructure/aws-best-practices/SKILL.md +279 -0
- package/templates/skills/infrastructure/aws-best-practices/index.yaml +27 -0
- package/templates/skills/infrastructure/docker-best-practices/SKILL.md +274 -0
- package/templates/skills/infrastructure/docker-best-practices/index.yaml +26 -0
- package/templates/skills/orchestration/intent-detection/SKILL.md +214 -0
- package/templates/skills/orchestration/intent-detection/index.yaml +30 -0
- package/templates/skills/orchestration/intent-detection/patterns/agent-triggers.yaml +333 -0
- package/templates/skills/orchestration/pipeline-execution/SKILL.md +188 -0
- package/templates/skills/orchestration/pipeline-execution/index.yaml +27 -0
- package/templates/skills/system/memory-management/SKILL.md +194 -0
- package/templates/skills/system/memory-management/index.yaml +30 -0
- package/templates/skills/system/result-aggregation/SKILL.md +163 -0
- package/templates/skills/system/result-aggregation/index.yaml +36 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Vercel Deploy Skill
|
|
2
|
+
|
|
3
|
+
metadata:
|
|
4
|
+
name: vercel-deploy
|
|
5
|
+
category: development
|
|
6
|
+
description: Deploy applications to Vercel with auto-detection and preview URLs
|
|
7
|
+
|
|
8
|
+
source:
|
|
9
|
+
type: external
|
|
10
|
+
origin: github
|
|
11
|
+
url: https://github.com/vercel-labs/agent-skills
|
|
12
|
+
path: skills/vercel-deploy-claimable
|
|
13
|
+
version: "1.0.0"
|
|
14
|
+
last_updated: "2025-01-22"
|
|
15
|
+
|
|
16
|
+
triggers:
|
|
17
|
+
- "deploy to Vercel"
|
|
18
|
+
- "create preview"
|
|
19
|
+
- "publish site"
|
|
20
|
+
- "Vercel deployment"
|
|
21
|
+
|
|
22
|
+
capabilities:
|
|
23
|
+
- Auto-detect 40+ frameworks
|
|
24
|
+
- Generate preview URLs
|
|
25
|
+
- Ownership transfer links
|
|
26
|
+
- Exclude node_modules, .git automatically
|
|
27
|
+
|
|
28
|
+
requirements:
|
|
29
|
+
- Vercel CLI or API access
|
|
30
|
+
- Project with package.json
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# Web Design Guidelines
|
|
2
|
+
|
|
3
|
+
> **Source**: vercel-labs/agent-skills
|
|
4
|
+
> **Rules**: 100+ rules across 11 categories
|
|
5
|
+
|
|
6
|
+
## When to Use
|
|
7
|
+
|
|
8
|
+
- UI code review
|
|
9
|
+
- Accessibility audit
|
|
10
|
+
- Design consistency check
|
|
11
|
+
- UX best practices verification
|
|
12
|
+
|
|
13
|
+
## Command Triggers
|
|
14
|
+
|
|
15
|
+
- "Review UI"
|
|
16
|
+
- "Check accessibility"
|
|
17
|
+
- "Design audit"
|
|
18
|
+
- "Verify best practices"
|
|
19
|
+
|
|
20
|
+
## Categories
|
|
21
|
+
|
|
22
|
+
### ARIA Labels
|
|
23
|
+
```
|
|
24
|
+
- All interactive elements have labels
|
|
25
|
+
- Proper role attributes
|
|
26
|
+
- aria-live for dynamic content
|
|
27
|
+
- Descriptive aria-describedby
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Focus States
|
|
31
|
+
```
|
|
32
|
+
- Visible focus indicators
|
|
33
|
+
- Logical focus order
|
|
34
|
+
- Focus trapping in modals
|
|
35
|
+
- Skip links for navigation
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Form Validation
|
|
39
|
+
```
|
|
40
|
+
- Inline error messages
|
|
41
|
+
- Accessible error announcements
|
|
42
|
+
- Clear input requirements
|
|
43
|
+
- Proper label associations
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Animations
|
|
47
|
+
```
|
|
48
|
+
- Respect prefers-reduced-motion
|
|
49
|
+
- Meaningful animations only
|
|
50
|
+
- Performance-optimized transforms
|
|
51
|
+
- No animation on load
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Typography
|
|
55
|
+
```
|
|
56
|
+
- Readable font sizes (16px min)
|
|
57
|
+
- Proper line height (1.5+)
|
|
58
|
+
- Sufficient color contrast
|
|
59
|
+
- Responsive text scaling
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Images
|
|
63
|
+
```
|
|
64
|
+
- Alt text for all images
|
|
65
|
+
- Decorative images marked
|
|
66
|
+
- Responsive images
|
|
67
|
+
- Lazy loading implemented
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Performance
|
|
71
|
+
```
|
|
72
|
+
- Minimize layout shifts
|
|
73
|
+
- Optimize largest contentful paint
|
|
74
|
+
- Reduce time to interactive
|
|
75
|
+
- Efficient CSS selectors
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### Navigation
|
|
79
|
+
```
|
|
80
|
+
- Keyboard accessible
|
|
81
|
+
- Clear current state
|
|
82
|
+
- Consistent patterns
|
|
83
|
+
- Breadcrumbs where needed
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Dark Mode
|
|
87
|
+
```
|
|
88
|
+
- System preference detection
|
|
89
|
+
- Smooth transitions
|
|
90
|
+
- Consistent color tokens
|
|
91
|
+
- Image adjustments
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Touch Interaction
|
|
95
|
+
```
|
|
96
|
+
- Minimum 44px touch targets
|
|
97
|
+
- Appropriate spacing
|
|
98
|
+
- Gesture alternatives
|
|
99
|
+
- Haptic feedback consideration
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### i18n
|
|
103
|
+
```
|
|
104
|
+
- RTL support
|
|
105
|
+
- Text expansion room
|
|
106
|
+
- Locale-aware formatting
|
|
107
|
+
- Translation-ready strings
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Execution Flow
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
1. Scan UI components
|
|
114
|
+
2. Check against category rules
|
|
115
|
+
3. Report violations
|
|
116
|
+
4. Suggest fixes
|
|
117
|
+
```
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Web Design Guidelines Skill
|
|
2
|
+
|
|
3
|
+
metadata:
|
|
4
|
+
name: web-design-guidelines
|
|
5
|
+
category: development
|
|
6
|
+
description: UI code review with 100+ rules for accessibility, performance, and UX
|
|
7
|
+
|
|
8
|
+
source:
|
|
9
|
+
type: external
|
|
10
|
+
origin: github
|
|
11
|
+
url: https://github.com/vercel-labs/agent-skills
|
|
12
|
+
path: skills/web-design-guidelines
|
|
13
|
+
version: "1.0.0"
|
|
14
|
+
last_updated: "2025-01-22"
|
|
15
|
+
|
|
16
|
+
triggers:
|
|
17
|
+
- "UI review"
|
|
18
|
+
- "accessibility check"
|
|
19
|
+
- "design audit"
|
|
20
|
+
- "UX review"
|
|
21
|
+
- "a11y check"
|
|
22
|
+
|
|
23
|
+
categories:
|
|
24
|
+
- aria-labels
|
|
25
|
+
- focus-states
|
|
26
|
+
- form-validation
|
|
27
|
+
- animations
|
|
28
|
+
- typography
|
|
29
|
+
- images
|
|
30
|
+
- performance
|
|
31
|
+
- navigation
|
|
32
|
+
- dark-mode
|
|
33
|
+
- touch-interaction
|
|
34
|
+
- i18n
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Baekgom Agents - Skill Registry
|
|
2
|
+
|
|
3
|
+
categories:
|
|
4
|
+
development:
|
|
5
|
+
description: Development related skills
|
|
6
|
+
skills:
|
|
7
|
+
- name: react-best-practices
|
|
8
|
+
path: ./development/react-best-practices/
|
|
9
|
+
description: React/Next.js performance optimization (40+ rules)
|
|
10
|
+
source:
|
|
11
|
+
type: external
|
|
12
|
+
origin: github
|
|
13
|
+
url: https://github.com/vercel-labs/agent-skills
|
|
14
|
+
|
|
15
|
+
- name: web-design-guidelines
|
|
16
|
+
path: ./development/web-design-guidelines/
|
|
17
|
+
description: UI code review for accessibility and UX (100+ rules)
|
|
18
|
+
source:
|
|
19
|
+
type: external
|
|
20
|
+
origin: github
|
|
21
|
+
url: https://github.com/vercel-labs/agent-skills
|
|
22
|
+
|
|
23
|
+
- name: vercel-deploy
|
|
24
|
+
path: ./development/vercel-deploy/
|
|
25
|
+
description: Deploy applications to Vercel
|
|
26
|
+
source:
|
|
27
|
+
type: external
|
|
28
|
+
origin: github
|
|
29
|
+
url: https://github.com/vercel-labs/agent-skills
|
|
30
|
+
|
|
31
|
+
- name: go-best-practices
|
|
32
|
+
path: ./development/go-best-practices/
|
|
33
|
+
description: Idiomatic Go patterns from Effective Go
|
|
34
|
+
source:
|
|
35
|
+
type: internal
|
|
36
|
+
|
|
37
|
+
- name: python-best-practices
|
|
38
|
+
path: ./development/python-best-practices/
|
|
39
|
+
description: Pythonic patterns from PEP 8 and PEP 20
|
|
40
|
+
source:
|
|
41
|
+
type: internal
|
|
42
|
+
|
|
43
|
+
- name: rust-best-practices
|
|
44
|
+
path: ./development/rust-best-practices/
|
|
45
|
+
description: Idiomatic Rust patterns from official guidelines
|
|
46
|
+
source:
|
|
47
|
+
type: internal
|
|
48
|
+
|
|
49
|
+
- name: kotlin-best-practices
|
|
50
|
+
path: ./development/kotlin-best-practices/
|
|
51
|
+
description: Idiomatic Kotlin patterns from JetBrains conventions
|
|
52
|
+
source:
|
|
53
|
+
type: internal
|
|
54
|
+
|
|
55
|
+
- name: typescript-best-practices
|
|
56
|
+
path: ./development/typescript-best-practices/
|
|
57
|
+
description: Type-safe TypeScript patterns from industry standards
|
|
58
|
+
source:
|
|
59
|
+
type: internal
|
|
60
|
+
|
|
61
|
+
backend:
|
|
62
|
+
description: Backend development skills
|
|
63
|
+
skills:
|
|
64
|
+
- name: fastapi-best-practices
|
|
65
|
+
path: ./backend/fastapi-best-practices/
|
|
66
|
+
description: FastAPI patterns for high-performance async APIs
|
|
67
|
+
source:
|
|
68
|
+
type: internal
|
|
69
|
+
|
|
70
|
+
- name: springboot-best-practices
|
|
71
|
+
path: ./backend/springboot-best-practices/
|
|
72
|
+
description: Spring Boot patterns for enterprise Java applications
|
|
73
|
+
source:
|
|
74
|
+
type: internal
|
|
75
|
+
|
|
76
|
+
- name: go-backend-best-practices
|
|
77
|
+
path: ./backend/go-backend-best-practices/
|
|
78
|
+
description: Go backend patterns from Uber style and standard layout
|
|
79
|
+
source:
|
|
80
|
+
type: internal
|
|
81
|
+
|
|
82
|
+
infrastructure:
|
|
83
|
+
description: Infrastructure and DevOps skills
|
|
84
|
+
skills:
|
|
85
|
+
- name: docker-best-practices
|
|
86
|
+
path: ./infrastructure/docker-best-practices/
|
|
87
|
+
description: Docker patterns for optimized containerization
|
|
88
|
+
source:
|
|
89
|
+
type: internal
|
|
90
|
+
|
|
91
|
+
- name: aws-best-practices
|
|
92
|
+
path: ./infrastructure/aws-best-practices/
|
|
93
|
+
description: AWS patterns from Well-Architected Framework
|
|
94
|
+
source:
|
|
95
|
+
type: internal
|
|
96
|
+
|
|
97
|
+
system:
|
|
98
|
+
description: System-level operation skills
|
|
99
|
+
skills:
|
|
100
|
+
- name: memory-management
|
|
101
|
+
path: ./system/memory-management/
|
|
102
|
+
description: Session memory persistence with claude-mem
|
|
103
|
+
source:
|
|
104
|
+
type: internal
|
|
105
|
+
|
|
106
|
+
- name: result-aggregation
|
|
107
|
+
path: ./system/result-aggregation/
|
|
108
|
+
description: Multi-agent result aggregation and formatting
|
|
109
|
+
source:
|
|
110
|
+
type: internal
|
|
111
|
+
|
|
112
|
+
orchestration:
|
|
113
|
+
description: Orchestration and workflow skills
|
|
114
|
+
skills:
|
|
115
|
+
- name: pipeline-execution
|
|
116
|
+
path: ./orchestration/pipeline-execution/
|
|
117
|
+
description: Sequential pipeline execution with step management
|
|
118
|
+
source:
|
|
119
|
+
type: internal
|
|
120
|
+
|
|
121
|
+
- name: intent-detection
|
|
122
|
+
path: ./orchestration/intent-detection/
|
|
123
|
+
description: User intent classification and agent routing
|
|
124
|
+
source:
|
|
125
|
+
type: internal
|
|
126
|
+
|
|
127
|
+
localsystem:
|
|
128
|
+
description: Local system operation skills
|
|
129
|
+
skills: []
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
# AWS Best Practices Skill
|
|
2
|
+
|
|
3
|
+
> **Category**: Infrastructure
|
|
4
|
+
> **Source**: Internal (based on AWS Well-Architected Framework)
|
|
5
|
+
|
|
6
|
+
## Purpose
|
|
7
|
+
|
|
8
|
+
Apply AWS patterns for building scalable, secure, and cost-effective cloud infrastructure.
|
|
9
|
+
|
|
10
|
+
## Well-Architected Framework Pillars
|
|
11
|
+
|
|
12
|
+
### 1. Operational Excellence
|
|
13
|
+
|
|
14
|
+
```yaml
|
|
15
|
+
principles:
|
|
16
|
+
- Perform operations as code
|
|
17
|
+
- Make frequent, small, reversible changes
|
|
18
|
+
- Refine operations procedures frequently
|
|
19
|
+
- Anticipate failure
|
|
20
|
+
- Learn from all operational failures
|
|
21
|
+
|
|
22
|
+
practices:
|
|
23
|
+
- Use CloudFormation/CDK for IaC
|
|
24
|
+
- Implement CI/CD pipelines
|
|
25
|
+
- Use CloudWatch for monitoring
|
|
26
|
+
- Set up alarms and dashboards
|
|
27
|
+
- Document runbooks
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### 2. Security
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
principles:
|
|
34
|
+
- Implement strong identity foundation
|
|
35
|
+
- Enable traceability
|
|
36
|
+
- Apply security at all layers
|
|
37
|
+
- Automate security best practices
|
|
38
|
+
- Protect data in transit and at rest
|
|
39
|
+
- Keep people away from data
|
|
40
|
+
- Prepare for security events
|
|
41
|
+
|
|
42
|
+
iam:
|
|
43
|
+
- Use least privilege principle
|
|
44
|
+
- Never use root account for daily tasks
|
|
45
|
+
- Enable MFA for all users
|
|
46
|
+
- Use IAM roles for services
|
|
47
|
+
- Rotate credentials regularly
|
|
48
|
+
|
|
49
|
+
patterns: |
|
|
50
|
+
# IAM Policy - Least Privilege
|
|
51
|
+
{
|
|
52
|
+
"Version": "2012-10-17",
|
|
53
|
+
"Statement": [{
|
|
54
|
+
"Effect": "Allow",
|
|
55
|
+
"Action": [
|
|
56
|
+
"s3:GetObject",
|
|
57
|
+
"s3:PutObject"
|
|
58
|
+
],
|
|
59
|
+
"Resource": "arn:aws:s3:::my-bucket/*",
|
|
60
|
+
"Condition": {
|
|
61
|
+
"IpAddress": {
|
|
62
|
+
"aws:SourceIp": "10.0.0.0/8"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}]
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### 3. Reliability
|
|
70
|
+
|
|
71
|
+
```yaml
|
|
72
|
+
principles:
|
|
73
|
+
- Automatically recover from failure
|
|
74
|
+
- Test recovery procedures
|
|
75
|
+
- Scale horizontally
|
|
76
|
+
- Stop guessing capacity
|
|
77
|
+
- Manage change through automation
|
|
78
|
+
|
|
79
|
+
practices:
|
|
80
|
+
- Multi-AZ deployments
|
|
81
|
+
- Auto Scaling groups
|
|
82
|
+
- Health checks and self-healing
|
|
83
|
+
- Backup and disaster recovery
|
|
84
|
+
- Loose coupling with queues
|
|
85
|
+
|
|
86
|
+
patterns:
|
|
87
|
+
high_availability: |
|
|
88
|
+
# Multi-AZ RDS
|
|
89
|
+
- Primary in us-east-1a
|
|
90
|
+
- Standby in us-east-1b
|
|
91
|
+
- Read replicas in us-east-1c
|
|
92
|
+
|
|
93
|
+
auto_scaling: |
|
|
94
|
+
# Target tracking scaling
|
|
95
|
+
- Metric: CPUUtilization
|
|
96
|
+
- Target: 70%
|
|
97
|
+
- Min: 2, Max: 10
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### 4. Performance Efficiency
|
|
101
|
+
|
|
102
|
+
```yaml
|
|
103
|
+
principles:
|
|
104
|
+
- Democratize advanced technologies
|
|
105
|
+
- Go global in minutes
|
|
106
|
+
- Use serverless architectures
|
|
107
|
+
- Experiment more often
|
|
108
|
+
- Consider mechanical sympathy
|
|
109
|
+
|
|
110
|
+
compute:
|
|
111
|
+
- Right-size instances
|
|
112
|
+
- Use Spot for fault-tolerant workloads
|
|
113
|
+
- Consider Graviton (ARM) processors
|
|
114
|
+
- Containerize with ECS/EKS
|
|
115
|
+
|
|
116
|
+
storage:
|
|
117
|
+
- Use appropriate storage class
|
|
118
|
+
- S3 Intelligent-Tiering for variable access
|
|
119
|
+
- EBS volume types based on IOPS needs
|
|
120
|
+
|
|
121
|
+
database:
|
|
122
|
+
- Aurora for MySQL/PostgreSQL
|
|
123
|
+
- DynamoDB for key-value/document
|
|
124
|
+
- ElastiCache for caching
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### 5. Cost Optimization
|
|
128
|
+
|
|
129
|
+
```yaml
|
|
130
|
+
principles:
|
|
131
|
+
- Implement cloud financial management
|
|
132
|
+
- Adopt consumption model
|
|
133
|
+
- Measure overall efficiency
|
|
134
|
+
- Stop spending on undifferentiated heavy lifting
|
|
135
|
+
- Analyze and attribute expenditure
|
|
136
|
+
|
|
137
|
+
practices:
|
|
138
|
+
- Use Reserved Instances/Savings Plans
|
|
139
|
+
- Right-size resources
|
|
140
|
+
- Delete unused resources
|
|
141
|
+
- Use Spot Instances
|
|
142
|
+
- Implement auto scaling
|
|
143
|
+
|
|
144
|
+
tools:
|
|
145
|
+
- AWS Cost Explorer
|
|
146
|
+
- AWS Budgets
|
|
147
|
+
- AWS Trusted Advisor
|
|
148
|
+
- Cost Allocation Tags
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
### 6. Sustainability
|
|
152
|
+
|
|
153
|
+
```yaml
|
|
154
|
+
principles:
|
|
155
|
+
- Understand your impact
|
|
156
|
+
- Establish sustainability goals
|
|
157
|
+
- Maximize utilization
|
|
158
|
+
- Anticipate and adopt more efficient offerings
|
|
159
|
+
- Use managed services
|
|
160
|
+
- Reduce downstream impact
|
|
161
|
+
|
|
162
|
+
practices:
|
|
163
|
+
- Use efficient instance types (Graviton)
|
|
164
|
+
- Optimize storage lifecycle
|
|
165
|
+
- Use serverless where possible
|
|
166
|
+
- Select regions with lower carbon intensity
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
## Common Patterns
|
|
170
|
+
|
|
171
|
+
### VPC Design
|
|
172
|
+
|
|
173
|
+
```yaml
|
|
174
|
+
pattern: |
|
|
175
|
+
VPC (10.0.0.0/16)
|
|
176
|
+
├── Public Subnets
|
|
177
|
+
│ ├── us-east-1a: 10.0.1.0/24
|
|
178
|
+
│ ├── us-east-1b: 10.0.2.0/24
|
|
179
|
+
│ └── us-east-1c: 10.0.3.0/24
|
|
180
|
+
├── Private Subnets (App)
|
|
181
|
+
│ ├── us-east-1a: 10.0.11.0/24
|
|
182
|
+
│ ├── us-east-1b: 10.0.12.0/24
|
|
183
|
+
│ └── us-east-1c: 10.0.13.0/24
|
|
184
|
+
└── Private Subnets (Data)
|
|
185
|
+
├── us-east-1a: 10.0.21.0/24
|
|
186
|
+
├── us-east-1b: 10.0.22.0/24
|
|
187
|
+
└── us-east-1c: 10.0.23.0/24
|
|
188
|
+
|
|
189
|
+
components:
|
|
190
|
+
- Internet Gateway (public access)
|
|
191
|
+
- NAT Gateway (private outbound)
|
|
192
|
+
- VPC Endpoints (AWS services)
|
|
193
|
+
- Network ACLs (subnet level)
|
|
194
|
+
- Security Groups (instance level)
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Three-Tier Architecture
|
|
198
|
+
|
|
199
|
+
```yaml
|
|
200
|
+
pattern: |
|
|
201
|
+
[Internet]
|
|
202
|
+
│
|
|
203
|
+
[CloudFront]
|
|
204
|
+
│
|
|
205
|
+
[ALB] ← Public Subnet
|
|
206
|
+
│
|
|
207
|
+
[ECS/EC2] ← Private Subnet (App)
|
|
208
|
+
│
|
|
209
|
+
[RDS Multi-AZ] ← Private Subnet (Data)
|
|
210
|
+
|
|
211
|
+
components:
|
|
212
|
+
web_tier:
|
|
213
|
+
- CloudFront for CDN
|
|
214
|
+
- WAF for protection
|
|
215
|
+
- ALB for load balancing
|
|
216
|
+
|
|
217
|
+
app_tier:
|
|
218
|
+
- ECS Fargate or EC2
|
|
219
|
+
- Auto Scaling
|
|
220
|
+
- ElastiCache
|
|
221
|
+
|
|
222
|
+
data_tier:
|
|
223
|
+
- RDS Multi-AZ
|
|
224
|
+
- Read Replicas
|
|
225
|
+
- Automated backups
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
### Serverless Pattern
|
|
229
|
+
|
|
230
|
+
```yaml
|
|
231
|
+
pattern: |
|
|
232
|
+
[API Gateway]
|
|
233
|
+
│
|
|
234
|
+
[Lambda] → [DynamoDB]
|
|
235
|
+
│
|
|
236
|
+
[SQS] → [Lambda] → [S3]
|
|
237
|
+
|
|
238
|
+
components:
|
|
239
|
+
- API Gateway for REST/HTTP APIs
|
|
240
|
+
- Lambda for compute
|
|
241
|
+
- DynamoDB for NoSQL
|
|
242
|
+
- SQS for decoupling
|
|
243
|
+
- S3 for storage
|
|
244
|
+
- Step Functions for orchestration
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
### CI/CD Pipeline
|
|
248
|
+
|
|
249
|
+
```yaml
|
|
250
|
+
pattern: |
|
|
251
|
+
[CodeCommit/GitHub]
|
|
252
|
+
│
|
|
253
|
+
[CodePipeline]
|
|
254
|
+
│
|
|
255
|
+
├── [CodeBuild] - Build & Test
|
|
256
|
+
│
|
|
257
|
+
├── [ECR] - Container Registry
|
|
258
|
+
│
|
|
259
|
+
└── [CodeDeploy/ECS] - Deploy
|
|
260
|
+
|
|
261
|
+
practices:
|
|
262
|
+
- Blue/Green deployments
|
|
263
|
+
- Canary releases
|
|
264
|
+
- Automated rollback
|
|
265
|
+
- Infrastructure as Code
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
## Application
|
|
269
|
+
|
|
270
|
+
When designing AWS architecture:
|
|
271
|
+
|
|
272
|
+
1. **Always** follow least privilege for IAM
|
|
273
|
+
2. **Always** use Multi-AZ for production
|
|
274
|
+
3. **Always** encrypt data at rest and in transit
|
|
275
|
+
4. **Prefer** managed services over self-managed
|
|
276
|
+
5. **Implement** monitoring and alerting
|
|
277
|
+
6. **Use** IaC for all infrastructure
|
|
278
|
+
7. **Design** for failure
|
|
279
|
+
8. **Optimize** costs continuously
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# AWS Best Practices Skill
|
|
2
|
+
|
|
3
|
+
metadata:
|
|
4
|
+
name: aws-best-practices
|
|
5
|
+
category: infrastructure
|
|
6
|
+
description: AWS patterns from Well-Architected Framework
|
|
7
|
+
|
|
8
|
+
source:
|
|
9
|
+
type: internal
|
|
10
|
+
reference:
|
|
11
|
+
- https://docs.aws.amazon.com/wellarchitected/latest/framework/welcome.html
|
|
12
|
+
- https://docs.aws.amazon.com/
|
|
13
|
+
- https://aws.amazon.com/architecture/
|
|
14
|
+
|
|
15
|
+
provides:
|
|
16
|
+
- Well-Architected Framework pillars
|
|
17
|
+
- Security best practices
|
|
18
|
+
- Reliability patterns
|
|
19
|
+
- Performance optimization
|
|
20
|
+
- Cost optimization
|
|
21
|
+
- VPC design patterns
|
|
22
|
+
- Three-tier architecture
|
|
23
|
+
- Serverless patterns
|
|
24
|
+
- CI/CD pipelines
|
|
25
|
+
|
|
26
|
+
used_by:
|
|
27
|
+
- aws-expert
|