@cubis/foundry 0.3.71 → 0.3.72
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/CHANGELOG.md +15 -0
- package/dist/cli/core.js +4 -18
- package/dist/cli/core.js.map +1 -1
- package/package.json +1 -1
- package/src/cli/core.ts +4 -18
- package/workflows/powers/accessibility/POWER.md +83 -94
- package/workflows/powers/accessibility/SKILL.md +82 -94
- package/workflows/powers/agent-design/POWER.md +201 -0
- package/workflows/powers/agent-design/SKILL.md +198 -0
- package/workflows/powers/agent-design/references/clarification-patterns.md +153 -0
- package/workflows/powers/agent-design/references/skill-testing.md +164 -0
- package/workflows/powers/agent-design/references/workflow-patterns.md +226 -0
- package/workflows/powers/agentic-eval/POWER.md +62 -0
- package/workflows/powers/agentic-eval/SKILL.md +59 -0
- package/workflows/powers/agentic-eval/references/rubric-and-regression-checklist.md +11 -0
- package/workflows/powers/api-designer/POWER.md +43 -71
- package/workflows/powers/api-designer/SKILL.md +43 -71
- package/workflows/powers/api-patterns/POWER.md +42 -56
- package/workflows/powers/api-patterns/SKILL.md +42 -57
- package/workflows/powers/architecture-designer/POWER.md +43 -60
- package/workflows/powers/architecture-designer/SKILL.md +43 -60
- package/workflows/powers/ask-questions-if-underspecified/POWER.md +51 -3
- package/workflows/powers/auth-architect/POWER.md +69 -0
- package/workflows/powers/auth-architect/SKILL.md +66 -0
- package/workflows/powers/auth-architect/references/session-token-policy-checklist.md +45 -0
- package/workflows/powers/behavioral-modes/POWER.md +100 -9
- package/workflows/powers/c-pro/POWER.md +105 -0
- package/workflows/powers/c-pro/SKILL.md +102 -0
- package/workflows/powers/c-pro/references/build-systems-and-toolchains.md +148 -0
- package/workflows/powers/c-pro/references/common-ub-and-portability.md +166 -0
- package/workflows/powers/c-pro/references/debugging-with-sanitizers.md +205 -0
- package/workflows/powers/c-pro/references/memory-safety-and-build-checklist.md +60 -0
- package/workflows/powers/c-pro/references/posix-and-platform-apis.md +244 -0
- package/workflows/powers/changelog-generator/POWER.md +127 -63
- package/workflows/powers/changelog-generator/SKILL.md +126 -63
- package/workflows/powers/ci-cd-pipelines/POWER.md +156 -0
- package/workflows/powers/ci-cd-pipelines/SKILL.md +153 -0
- package/workflows/powers/ci-cd-pipelines/references/github-actions-patterns.md +160 -0
- package/workflows/powers/ci-cd-pipelines/references/pipeline-security-checklist.md +57 -0
- package/workflows/powers/cli-developer/POWER.md +152 -95
- package/workflows/powers/cli-developer/SKILL.md +152 -95
- package/workflows/powers/cpp-pro/POWER.md +111 -0
- package/workflows/powers/cpp-pro/SKILL.md +108 -0
- package/workflows/powers/cpp-pro/references/concurrency-primitives.md +266 -0
- package/workflows/powers/cpp-pro/references/move-semantics-and-value-types.md +149 -0
- package/workflows/powers/cpp-pro/references/performance-and-profiling.md +191 -0
- package/workflows/powers/cpp-pro/references/raii-and-modern-cpp-checklist.md +87 -0
- package/workflows/powers/cpp-pro/references/template-and-concepts-patterns.md +205 -0
- package/workflows/powers/csharp-pro/POWER.md +47 -22
- package/workflows/powers/csharp-pro/SKILL.md +47 -22
- package/workflows/powers/dart-pro/POWER.md +68 -0
- package/workflows/powers/dart-pro/SKILL.md +65 -0
- package/workflows/powers/dart-pro/references/isolate-and-concurrency.md +180 -0
- package/workflows/powers/dart-pro/references/null-safety-and-async-patterns.md +133 -0
- package/workflows/powers/dart-pro/references/package-structure-and-linting.md +193 -0
- package/workflows/powers/dart-pro/references/sealed-records-patterns.md +173 -0
- package/workflows/powers/dart-pro/references/testing-and-mocking.md +235 -0
- package/workflows/powers/database-design/POWER.md +47 -33
- package/workflows/powers/database-design/SKILL.md +47 -33
- package/workflows/powers/database-optimizer/POWER.md +43 -64
- package/workflows/powers/database-optimizer/SKILL.md +43 -64
- package/workflows/powers/database-skills/POWER.md +59 -93
- package/workflows/powers/database-skills/SKILL.md +59 -93
- package/workflows/powers/debugging-strategies/POWER.md +69 -0
- package/workflows/powers/debugging-strategies/SKILL.md +66 -0
- package/workflows/powers/debugging-strategies/references/reproduce-isolate-verify-checklist.md +42 -0
- package/workflows/powers/deep-research/POWER.md +67 -0
- package/workflows/powers/deep-research/SKILL.md +64 -0
- package/workflows/powers/deep-research/references/multi-round-research-loop.md +80 -0
- package/workflows/powers/design-system-builder/POWER.md +130 -116
- package/workflows/powers/design-system-builder/SKILL.md +130 -116
- package/workflows/powers/devops-engineer/POWER.md +120 -57
- package/workflows/powers/devops-engineer/SKILL.md +120 -57
- package/workflows/powers/docker-kubernetes/POWER.md +94 -0
- package/workflows/powers/docker-kubernetes/SKILL.md +91 -0
- package/workflows/powers/docker-kubernetes/references/dockerfile-optimization-checklist.md +35 -0
- package/workflows/powers/docker-kubernetes/references/kubernetes-deployment-patterns.md +59 -0
- package/workflows/powers/documentation-templates/POWER.md +158 -127
- package/workflows/powers/documentation-templates/SKILL.md +158 -127
- package/workflows/powers/drizzle-expert/POWER.md +66 -0
- package/workflows/powers/drizzle-expert/SKILL.md +63 -0
- package/workflows/powers/drizzle-expert/references/runtime-pairing-matrix.md +16 -0
- package/workflows/powers/drizzle-expert/references/schema-and-migration-playbook.md +18 -0
- package/workflows/powers/error-ux-observability/POWER.md +144 -131
- package/workflows/powers/error-ux-observability/SKILL.md +143 -131
- package/workflows/powers/fastapi-expert/POWER.md +46 -60
- package/workflows/powers/fastapi-expert/SKILL.md +46 -60
- package/workflows/powers/firebase/POWER.md +65 -0
- package/workflows/powers/firebase/SKILL.md +62 -0
- package/workflows/powers/firebase/references/platform-routing.md +16 -0
- package/workflows/powers/firebase/references/rules-and-indexes-checklist.md +11 -0
- package/workflows/powers/flutter-design-system/POWER.md +63 -0
- package/workflows/powers/flutter-design-system/SKILL.md +60 -0
- package/workflows/powers/flutter-design-system/references/shared-widgets.md +29 -0
- package/workflows/powers/flutter-design-system/references/tokens-and-theme.md +34 -0
- package/workflows/powers/flutter-drift/POWER.md +65 -0
- package/workflows/powers/flutter-drift/SKILL.md +62 -0
- package/workflows/powers/flutter-drift/references/migrations.md +22 -0
- package/workflows/powers/flutter-drift/references/query-patterns.md +26 -0
- package/workflows/powers/flutter-feature/POWER.md +65 -0
- package/workflows/powers/flutter-feature/SKILL.md +62 -0
- package/workflows/powers/flutter-feature/references/architecture-rules.md +85 -0
- package/workflows/powers/flutter-feature/references/composite-provider.md +58 -0
- package/workflows/powers/flutter-feature/references/outbox-pattern.md +87 -0
- package/workflows/powers/flutter-feature/references/testing-patterns.md +218 -0
- package/workflows/powers/flutter-go-router/POWER.md +64 -0
- package/workflows/powers/flutter-go-router/SKILL.md +61 -0
- package/workflows/powers/flutter-go-router/references/guards-and-deeplinks.md +20 -0
- package/workflows/powers/flutter-go-router/references/typed-routes.md +27 -0
- package/workflows/powers/flutter-offline-sync/POWER.md +62 -0
- package/workflows/powers/flutter-offline-sync/SKILL.md +59 -0
- package/workflows/powers/flutter-offline-sync/references/outbox-full.md +44 -0
- package/workflows/powers/flutter-repository/POWER.md +64 -0
- package/workflows/powers/flutter-repository/SKILL.md +61 -0
- package/workflows/powers/flutter-repository/references/drift-patterns.md +21 -0
- package/workflows/powers/flutter-repository/references/retrofit-patterns.md +20 -0
- package/workflows/powers/flutter-riverpod/POWER.md +70 -0
- package/workflows/powers/flutter-riverpod/SKILL.md +67 -0
- package/workflows/powers/flutter-riverpod/references/async-and-mutations.md +19 -0
- package/workflows/powers/flutter-riverpod/references/async-lifecycle.md +19 -0
- package/workflows/powers/flutter-riverpod/references/provider-selection.md +20 -0
- package/workflows/powers/flutter-riverpod/references/testing.md +21 -0
- package/workflows/powers/flutter-riverpod/references/version-matrix.md +24 -0
- package/workflows/powers/flutter-state-machine/POWER.md +62 -0
- package/workflows/powers/flutter-state-machine/SKILL.md +59 -0
- package/workflows/powers/flutter-state-machine/references/app-state-contract.md +23 -0
- package/workflows/powers/flutter-state-machine/references/ui-rendering.md +14 -0
- package/workflows/powers/flutter-testing/POWER.md +64 -0
- package/workflows/powers/flutter-testing/SKILL.md +61 -0
- package/workflows/powers/flutter-testing/references/offline-sync-tests.md +16 -0
- package/workflows/powers/flutter-testing/references/test-layers.md +33 -0
- package/workflows/powers/frontend-code-review/POWER.md +137 -0
- package/workflows/powers/frontend-code-review/SKILL.md +134 -0
- package/workflows/powers/frontend-code-review/references/common-antipatterns.md +86 -0
- package/workflows/powers/frontend-code-review/references/performance-budgets.md +56 -0
- package/workflows/powers/frontend-code-review/references/review-checklists.md +47 -0
- package/workflows/powers/frontend-design/POWER.md +163 -362
- package/workflows/powers/frontend-design/SKILL.md +163 -362
- package/workflows/powers/game-development/POWER.md +57 -140
- package/workflows/powers/game-development/SKILL.md +57 -140
- package/workflows/powers/geo-fundamentals/POWER.md +64 -126
- package/workflows/powers/geo-fundamentals/SKILL.md +64 -127
- package/workflows/powers/git-workflow/POWER.md +135 -0
- package/workflows/powers/git-workflow/SKILL.md +132 -0
- package/workflows/powers/git-workflow/references/pr-review-checklist.md +63 -0
- package/workflows/powers/golang-pro/POWER.md +46 -35
- package/workflows/powers/golang-pro/SKILL.md +46 -35
- package/workflows/powers/graphql-architect/POWER.md +44 -62
- package/workflows/powers/graphql-architect/SKILL.md +44 -62
- package/workflows/powers/i18n-localization/POWER.md +118 -103
- package/workflows/powers/i18n-localization/SKILL.md +118 -103
- package/workflows/powers/java-pro/POWER.md +47 -22
- package/workflows/powers/java-pro/SKILL.md +47 -22
- package/workflows/powers/javascript-pro/POWER.md +47 -34
- package/workflows/powers/javascript-pro/SKILL.md +47 -34
- package/workflows/powers/kotlin-pro/POWER.md +46 -23
- package/workflows/powers/kotlin-pro/SKILL.md +46 -23
- package/workflows/powers/legacy-modernizer/POWER.md +43 -60
- package/workflows/powers/legacy-modernizer/SKILL.md +43 -60
- package/workflows/powers/mcp-builder/POWER.md +65 -0
- package/workflows/powers/mcp-builder/SKILL.md +62 -0
- package/workflows/powers/mcp-builder/references/testing-and-evals.md +17 -0
- package/workflows/powers/mcp-builder/references/transport-and-tool-design.md +17 -0
- package/workflows/powers/microservices-architect/POWER.md +43 -70
- package/workflows/powers/microservices-architect/SKILL.md +43 -70
- package/workflows/powers/mobile-design/POWER.md +110 -345
- package/workflows/powers/mobile-design/SKILL.md +110 -345
- package/workflows/powers/mongodb/POWER.md +67 -0
- package/workflows/powers/mongodb/SKILL.md +64 -0
- package/workflows/powers/mongodb/references/mongodb-checklist.md +20 -0
- package/workflows/powers/mysql/POWER.md +67 -0
- package/workflows/powers/mysql/SKILL.md +64 -0
- package/workflows/powers/mysql/references/mysql-checklist.md +20 -0
- package/workflows/powers/neki/POWER.md +67 -0
- package/workflows/powers/neki/SKILL.md +64 -0
- package/workflows/powers/neki/references/neki-checklist.md +18 -0
- package/workflows/powers/nestjs-expert/POWER.md +45 -91
- package/workflows/powers/nestjs-expert/SKILL.md +45 -91
- package/workflows/powers/nextjs-developer/POWER.md +51 -44
- package/workflows/powers/nextjs-developer/SKILL.md +51 -44
- package/workflows/powers/nodejs-best-practices/POWER.md +48 -29
- package/workflows/powers/nodejs-best-practices/SKILL.md +48 -29
- package/workflows/powers/observability/POWER.md +109 -0
- package/workflows/powers/observability/SKILL.md +106 -0
- package/workflows/powers/observability/references/alerting-and-slo-checklist.md +87 -0
- package/workflows/powers/observability/references/opentelemetry-setup-guide.md +121 -0
- package/workflows/powers/openai-docs/POWER.md +61 -0
- package/workflows/powers/openai-docs/SKILL.md +58 -0
- package/workflows/powers/openai-docs/references/official-source-playbook.md +10 -0
- package/workflows/powers/performance-profiling/POWER.md +61 -114
- package/workflows/powers/performance-profiling/SKILL.md +61 -114
- package/workflows/powers/php-pro/POWER.md +116 -0
- package/workflows/powers/php-pro/SKILL.md +113 -0
- package/workflows/powers/php-pro/references/architecture-and-di.md +239 -0
- package/workflows/powers/php-pro/references/modern-php-features.md +189 -0
- package/workflows/powers/php-pro/references/performance-and-deployment.md +197 -0
- package/workflows/powers/php-pro/references/php84-strict-typing-checklist.md +161 -0
- package/workflows/powers/php-pro/references/testing-and-static-analysis.md +235 -0
- package/workflows/powers/playwright-e2e/POWER.md +85 -0
- package/workflows/powers/playwright-e2e/SKILL.md +82 -0
- package/workflows/powers/playwright-e2e/references/locator-trace-flake-checklist.md +80 -0
- package/workflows/powers/postgres/POWER.md +67 -0
- package/workflows/powers/postgres/SKILL.md +64 -0
- package/workflows/powers/postgres/references/postgres-checklist.md +20 -0
- package/workflows/powers/prompt-engineer/POWER.md +47 -30
- package/workflows/powers/prompt-engineer/SKILL.md +47 -30
- package/workflows/powers/python-pro/POWER.md +47 -36
- package/workflows/powers/python-pro/SKILL.md +47 -36
- package/workflows/powers/react-best-practices/POWER.md +56 -33
- package/workflows/powers/react-best-practices/SKILL.md +56 -33
- package/workflows/powers/react-expert/POWER.md +47 -37
- package/workflows/powers/react-expert/SKILL.md +47 -37
- package/workflows/powers/redis/POWER.md +67 -0
- package/workflows/powers/redis/SKILL.md +64 -0
- package/workflows/powers/redis/references/redis-checklist.md +19 -0
- package/workflows/powers/ruby-pro/POWER.md +118 -0
- package/workflows/powers/ruby-pro/SKILL.md +115 -0
- package/workflows/powers/ruby-pro/references/modern-ruby-features.md +189 -0
- package/workflows/powers/ruby-pro/references/object-design-patterns.md +220 -0
- package/workflows/powers/ruby-pro/references/performance-and-profiling.md +224 -0
- package/workflows/powers/ruby-pro/references/ruby-concurrency-and-testing.md +190 -0
- package/workflows/powers/ruby-pro/references/testing-and-rspec.md +236 -0
- package/workflows/powers/rust-pro/POWER.md +45 -31
- package/workflows/powers/rust-pro/SKILL.md +45 -31
- package/workflows/powers/security-engineer/POWER.md +129 -0
- package/workflows/powers/security-engineer/SKILL.md +126 -0
- package/workflows/powers/seo-fundamentals/POWER.md +59 -102
- package/workflows/powers/seo-fundamentals/SKILL.md +59 -102
- package/workflows/powers/serverless-patterns/POWER.md +171 -0
- package/workflows/powers/serverless-patterns/SKILL.md +168 -0
- package/workflows/powers/skill-creator/POWER.md +90 -0
- package/workflows/powers/skill-creator/SKILL.md +87 -0
- package/workflows/powers/skill-creator/references/platform-formats.md +181 -0
- package/workflows/powers/skill-creator/references/schemas.md +430 -0
- package/workflows/powers/spec-miner/POWER.md +49 -57
- package/workflows/powers/spec-miner/SKILL.md +49 -57
- package/workflows/powers/sqlite/POWER.md +67 -0
- package/workflows/powers/sqlite/SKILL.md +64 -0
- package/workflows/powers/sqlite/references/sqlite-checklist.md +19 -0
- package/workflows/powers/sre-engineer/POWER.md +123 -64
- package/workflows/powers/sre-engineer/SKILL.md +123 -64
- package/workflows/powers/static-analysis/POWER.md +121 -77
- package/workflows/powers/static-analysis/SKILL.md +121 -77
- package/workflows/powers/stripe-best-practices/POWER.md +140 -17
- package/workflows/powers/stripe-best-practices/SKILL.md +139 -17
- package/workflows/powers/supabase/POWER.md +67 -0
- package/workflows/powers/supabase/SKILL.md +64 -0
- package/workflows/powers/supabase/references/supabase-checklist.md +19 -0
- package/workflows/powers/swift-pro/POWER.md +118 -0
- package/workflows/powers/swift-pro/SKILL.md +115 -0
- package/workflows/powers/swift-pro/references/concurrency-patterns.md +165 -0
- package/workflows/powers/swift-pro/references/protocol-and-generics.md +172 -0
- package/workflows/powers/swift-pro/references/sendable-and-isolation.md +116 -0
- package/workflows/powers/swift-pro/references/swift-concurrency-and-protocols.md +260 -0
- package/workflows/powers/swift-pro/references/testing-and-packages.md +192 -0
- package/workflows/powers/tailwind-patterns/POWER.md +71 -240
- package/workflows/powers/tailwind-patterns/SKILL.md +71 -240
- package/workflows/powers/testing-patterns/POWER.md +155 -10
- package/workflows/powers/testing-patterns/SKILL.md +155 -10
- package/workflows/powers/typescript-pro/POWER.md +47 -38
- package/workflows/powers/typescript-pro/SKILL.md +47 -38
- package/workflows/powers/vitess/POWER.md +67 -0
- package/workflows/powers/vitess/SKILL.md +64 -0
- package/workflows/powers/vitess/references/vitess-checklist.md +19 -0
- package/workflows/powers/vulnerability-scanner/POWER.md +146 -10
- package/workflows/powers/vulnerability-scanner/SKILL.md +146 -10
- package/workflows/powers/web-perf/POWER.md +43 -170
- package/workflows/powers/web-perf/SKILL.md +43 -170
- package/workflows/powers/webapp-testing/POWER.md +43 -164
- package/workflows/powers/webapp-testing/SKILL.md +43 -164
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mcp-builder
|
|
3
|
+
description: "Use when building, extending, or evaluating an MCP server: tool design, resource patterns, transports, auth, schemas, testing, Python or TypeScript implementation, or MCP-specific server architecture decisions."
|
|
4
|
+
license: MIT
|
|
5
|
+
metadata:
|
|
6
|
+
author: cubis-foundry
|
|
7
|
+
version: "1.0"
|
|
8
|
+
compatibility: Claude Code, Codex, GitHub Copilot
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# MCP Builder
|
|
12
|
+
|
|
13
|
+
## Purpose
|
|
14
|
+
|
|
15
|
+
You are the specialist for Model Context Protocol server design and delivery.
|
|
16
|
+
|
|
17
|
+
Your job is to keep tool design, transport choices, auth, structured output, testing, and evaluation disciplined from the start.
|
|
18
|
+
|
|
19
|
+
## When to Use
|
|
20
|
+
|
|
21
|
+
- Building or extending an MCP server in TypeScript or Python.
|
|
22
|
+
- Designing tools, resources, prompts, transports, auth, or server lifecycle patterns.
|
|
23
|
+
- Evaluating whether an MCP surface is too low-level, too broad, or not model-friendly enough.
|
|
24
|
+
|
|
25
|
+
## Instructions
|
|
26
|
+
|
|
27
|
+
### STANDARD OPERATING PROCEDURE (SOP)
|
|
28
|
+
|
|
29
|
+
1. Confirm the target workflow, auth model, transport, and host environment.
|
|
30
|
+
2. Design the smallest useful tool and resource surface before coding.
|
|
31
|
+
3. Keep schemas explicit, action names discoverable, and outputs structured.
|
|
32
|
+
4. Separate implementation concerns for TypeScript vs Python only after the server contract is clear.
|
|
33
|
+
5. Require testing and evaluation before treating the server as done.
|
|
34
|
+
|
|
35
|
+
### Constraints
|
|
36
|
+
|
|
37
|
+
- Do not turn MCP server work into generic API wrapper code.
|
|
38
|
+
- Do not design tools before understanding the real workflow the model must support.
|
|
39
|
+
- Do not skip schema clarity, destructive-action hints, or auth boundaries.
|
|
40
|
+
- Do not stop at implementation without a testing and evaluation plan.
|
|
41
|
+
|
|
42
|
+
## Output Format
|
|
43
|
+
|
|
44
|
+
Provide implementation guidance, code examples, and configuration as appropriate to the task.
|
|
45
|
+
|
|
46
|
+
## References
|
|
47
|
+
|
|
48
|
+
Load on demand. Do not preload all reference files.
|
|
49
|
+
|
|
50
|
+
| File | Load when |
|
|
51
|
+
| ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
|
|
52
|
+
| `references/transport-and-tool-design.md` | You need transport, auth, tool naming, resource pattern, or schema guidance for a new or existing MCP server. |
|
|
53
|
+
| `references/testing-and-evals.md` | You need the review loop for build checks, inspector testing, scenario coverage, and evaluator-style quality gates. |
|
|
54
|
+
|
|
55
|
+
## Scripts
|
|
56
|
+
|
|
57
|
+
No helper scripts are required for this skill right now. Keep execution in `SKILL.md` and `references/` unless repeated automation becomes necessary.
|
|
58
|
+
|
|
59
|
+
## Examples
|
|
60
|
+
|
|
61
|
+
- "Help me with mcp builder best practices in this project"
|
|
62
|
+
- "Review my mcp builder implementation for issues"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# MCP Testing And Evals
|
|
2
|
+
|
|
3
|
+
Load this when the server exists or is close to shipping.
|
|
4
|
+
|
|
5
|
+
## Required Checks
|
|
6
|
+
|
|
7
|
+
- Build or type-check the server.
|
|
8
|
+
- Exercise tools through the intended MCP client path or inspector.
|
|
9
|
+
- Confirm error messages are actionable and do not leak secrets.
|
|
10
|
+
- Verify structured outputs match what downstream agents need.
|
|
11
|
+
|
|
12
|
+
## Evaluation Loop
|
|
13
|
+
|
|
14
|
+
1. Pick realistic read-only tasks first.
|
|
15
|
+
2. Confirm the model can discover the right tools.
|
|
16
|
+
3. Check whether tool descriptions, schemas, or result shape cause misuse.
|
|
17
|
+
4. Tighten naming, auth, or output structure before broadening coverage.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# MCP Transport And Tool Design
|
|
2
|
+
|
|
3
|
+
Load this when the server contract is still being shaped.
|
|
4
|
+
|
|
5
|
+
## Minimum Design Questions
|
|
6
|
+
|
|
7
|
+
- Is this local stdio, remote HTTP, or another deployment shape?
|
|
8
|
+
- What auth or secret boundary exists?
|
|
9
|
+
- Which workflows need high-level tools versus composable low-level tools?
|
|
10
|
+
- What should be a tool, a resource, or a prompt template?
|
|
11
|
+
|
|
12
|
+
## Tool Rules
|
|
13
|
+
|
|
14
|
+
- Prefer action-oriented names.
|
|
15
|
+
- Keep each tool focused and discoverable.
|
|
16
|
+
- Use explicit input validation and structured output where possible.
|
|
17
|
+
- Mark destructive or non-idempotent behavior clearly.
|
|
@@ -1,96 +1,69 @@
|
|
|
1
1
|
````markdown
|
|
2
2
|
---
|
|
3
3
|
inclusion: manual
|
|
4
|
-
name:
|
|
5
|
-
description: "Use when
|
|
4
|
+
name: microservices-architect
|
|
5
|
+
description: "Use when decomposing systems into services, designing service boundaries, choosing sync and async integration patterns, and managing distributed-system reliability tradeoffs."
|
|
6
|
+
license: MIT
|
|
7
|
+
metadata:
|
|
8
|
+
author: cubis-foundry
|
|
9
|
+
version: "3.0"
|
|
10
|
+
compatibility: Claude Code, Codex, GitHub Copilot
|
|
6
11
|
---
|
|
7
12
|
|
|
8
|
-
|
|
9
13
|
# Microservices Architect
|
|
10
14
|
|
|
11
|
-
##
|
|
12
|
-
|
|
13
|
-
Senior distributed systems architect specializing in cloud-native microservices architectures, resilience patterns, and operational excellence.
|
|
14
|
-
|
|
15
|
-
## Role Definition
|
|
16
|
-
|
|
17
|
-
You are a senior microservices architect with 15+ years of experience designing distributed systems. You specialize in service decomposition, domain-driven design, resilience patterns, service mesh technologies, and cloud-native architectures. You design systems that scale, self-heal, and enable autonomous teams.
|
|
18
|
-
|
|
19
|
-
## When to Use This Skill
|
|
15
|
+
## Purpose
|
|
20
16
|
|
|
21
|
-
|
|
22
|
-
- Defining service boundaries and bounded contexts
|
|
23
|
-
- Designing inter-service communication patterns
|
|
24
|
-
- Implementing resilience patterns (circuit breakers, retries, bulkheads)
|
|
25
|
-
- Setting up service mesh (Istio, Linkerd)
|
|
26
|
-
- Designing event-driven architectures
|
|
27
|
-
- Implementing distributed transactions (Saga, CQRS)
|
|
28
|
-
- Establishing observability (tracing, metrics, logging)
|
|
17
|
+
Use when decomposing systems into services, designing service boundaries, choosing sync and async integration patterns, and managing distributed-system reliability tradeoffs.
|
|
29
18
|
|
|
30
|
-
##
|
|
19
|
+
## When to Use
|
|
31
20
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
5. **Observability** - Distributed tracing, correlation IDs, centralized logging
|
|
37
|
-
6. **Deployment** - Container orchestration, service mesh, progressive delivery
|
|
21
|
+
- Decomposing a monolith or clarifying service boundaries.
|
|
22
|
+
- Choosing sync vs async integration between services.
|
|
23
|
+
- Designing distributed consistency, retries, timeouts, and failure isolation.
|
|
24
|
+
- Reviewing whether a system is becoming a distributed monolith.
|
|
38
25
|
|
|
39
|
-
##
|
|
26
|
+
## Instructions
|
|
40
27
|
|
|
41
|
-
|
|
28
|
+
1. Prove the organizational or product reason for multiple services.
|
|
29
|
+
2. Define service boundaries from ownership and domain seams, not deployment preference.
|
|
30
|
+
3. Choose communication and consistency strategy per interaction.
|
|
31
|
+
4. Design reliability and observability as first-class distributed concerns.
|
|
32
|
+
5. Check whether the proposed split actually reduces coordination risk.
|
|
42
33
|
|
|
43
|
-
|
|
44
|
-
| ------------------- | --------------------------- | -------------------------------------------------- |
|
|
45
|
-
| Service Boundaries | `references/decomposition.md` | Monolith decomposition, bounded contexts, DDD |
|
|
46
|
-
| Communication | `references/communication.md` | REST vs gRPC, async messaging, event-driven |
|
|
47
|
-
| Resilience Patterns | `references/patterns.md` | Circuit breakers, saga, bulkhead, retry strategies |
|
|
48
|
-
| Data Management | `references/data.md` | Database per service, event sourcing, CQRS |
|
|
49
|
-
| Observability | `references/observability.md` | Distributed tracing, correlation IDs, metrics |
|
|
34
|
+
### Baseline standards
|
|
50
35
|
|
|
51
|
-
|
|
36
|
+
- Prefer clear bounded contexts over premature service count growth.
|
|
37
|
+
- Keep contracts explicit and versionable.
|
|
38
|
+
- Design for retries, timeouts, idempotency, and degraded modes.
|
|
39
|
+
- Treat tracing, logs, and metrics as required, not optional.
|
|
40
|
+
- Use async boundaries deliberately where coupling or latency demand it.
|
|
52
41
|
|
|
53
|
-
###
|
|
42
|
+
### Constraints
|
|
54
43
|
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
- Use async communication for cross-aggregate operations
|
|
60
|
-
- Design for failure and graceful degradation
|
|
61
|
-
- Implement health checks and readiness probes
|
|
62
|
-
- Use API versioning strategies
|
|
44
|
+
- Avoid splitting services without ownership clarity.
|
|
45
|
+
- Avoid shared databases masquerading as autonomy.
|
|
46
|
+
- Avoid chatty synchronous call chains with no resilience model.
|
|
47
|
+
- Avoid event-driven complexity when direct boundaries would be simpler.
|
|
63
48
|
|
|
64
|
-
|
|
49
|
+
## Output Format
|
|
65
50
|
|
|
66
|
-
|
|
67
|
-
- Share databases between services
|
|
68
|
-
- Use synchronous calls for long-running operations
|
|
69
|
-
- Skip distributed tracing implementation
|
|
70
|
-
- Ignore network latency and partial failures
|
|
71
|
-
- Create chatty service interfaces
|
|
72
|
-
- Store shared state without proper patterns
|
|
73
|
-
- Deploy without observability
|
|
51
|
+
Provide implementation guidance, code examples, and configuration as appropriate to the task.
|
|
74
52
|
|
|
75
|
-
##
|
|
53
|
+
## References
|
|
76
54
|
|
|
77
|
-
|
|
55
|
+
Load on demand. Do not preload all reference files.
|
|
78
56
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
4. Resilience patterns for each integration point
|
|
83
|
-
5. Deployment and infrastructure requirements
|
|
57
|
+
| File | Load when |
|
|
58
|
+
| --- | --- |
|
|
59
|
+
| `references/service-boundary-checklist.md` | You need a more detailed playbook for service seams, contracts, async boundaries, idempotency, and distributed failure modes. |
|
|
84
60
|
|
|
85
|
-
##
|
|
61
|
+
## Scripts
|
|
86
62
|
|
|
87
|
-
|
|
63
|
+
No helper scripts are required for this skill right now. Keep execution in `SKILL.md` and `references/` unless repeated automation becomes necessary.
|
|
88
64
|
|
|
89
|
-
##
|
|
65
|
+
## Examples
|
|
90
66
|
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
- **GraphQL Architect** - Federation for distributed schemas
|
|
94
|
-
- **Architecture Designer** - High-level system design
|
|
95
|
-
- **Monitoring Expert** - Observability implementation
|
|
67
|
+
- "Help me with microservices architect best practices in this project"
|
|
68
|
+
- "Review my microservices architect implementation for issues"
|
|
96
69
|
````
|
|
@@ -1,93 +1,66 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
description: "Use when
|
|
2
|
+
name: microservices-architect
|
|
3
|
+
description: "Use when decomposing systems into services, designing service boundaries, choosing sync and async integration patterns, and managing distributed-system reliability tradeoffs."
|
|
4
|
+
license: MIT
|
|
5
|
+
metadata:
|
|
6
|
+
author: cubis-foundry
|
|
7
|
+
version: "3.0"
|
|
8
|
+
compatibility: Claude Code, Codex, GitHub Copilot
|
|
4
9
|
---
|
|
5
10
|
|
|
6
|
-
|
|
7
11
|
# Microservices Architect
|
|
8
12
|
|
|
9
|
-
##
|
|
10
|
-
|
|
11
|
-
Senior distributed systems architect specializing in cloud-native microservices architectures, resilience patterns, and operational excellence.
|
|
12
|
-
|
|
13
|
-
## Role Definition
|
|
14
|
-
|
|
15
|
-
You are a senior microservices architect with 15+ years of experience designing distributed systems. You specialize in service decomposition, domain-driven design, resilience patterns, service mesh technologies, and cloud-native architectures. You design systems that scale, self-heal, and enable autonomous teams.
|
|
16
|
-
|
|
17
|
-
## When to Use This Skill
|
|
13
|
+
## Purpose
|
|
18
14
|
|
|
19
|
-
|
|
20
|
-
- Defining service boundaries and bounded contexts
|
|
21
|
-
- Designing inter-service communication patterns
|
|
22
|
-
- Implementing resilience patterns (circuit breakers, retries, bulkheads)
|
|
23
|
-
- Setting up service mesh (Istio, Linkerd)
|
|
24
|
-
- Designing event-driven architectures
|
|
25
|
-
- Implementing distributed transactions (Saga, CQRS)
|
|
26
|
-
- Establishing observability (tracing, metrics, logging)
|
|
15
|
+
Use when decomposing systems into services, designing service boundaries, choosing sync and async integration patterns, and managing distributed-system reliability tradeoffs.
|
|
27
16
|
|
|
28
|
-
##
|
|
17
|
+
## When to Use
|
|
29
18
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
5. **Observability** - Distributed tracing, correlation IDs, centralized logging
|
|
35
|
-
6. **Deployment** - Container orchestration, service mesh, progressive delivery
|
|
19
|
+
- Decomposing a monolith or clarifying service boundaries.
|
|
20
|
+
- Choosing sync vs async integration between services.
|
|
21
|
+
- Designing distributed consistency, retries, timeouts, and failure isolation.
|
|
22
|
+
- Reviewing whether a system is becoming a distributed monolith.
|
|
36
23
|
|
|
37
|
-
##
|
|
24
|
+
## Instructions
|
|
38
25
|
|
|
39
|
-
|
|
26
|
+
1. Prove the organizational or product reason for multiple services.
|
|
27
|
+
2. Define service boundaries from ownership and domain seams, not deployment preference.
|
|
28
|
+
3. Choose communication and consistency strategy per interaction.
|
|
29
|
+
4. Design reliability and observability as first-class distributed concerns.
|
|
30
|
+
5. Check whether the proposed split actually reduces coordination risk.
|
|
40
31
|
|
|
41
|
-
|
|
42
|
-
| ------------------- | --------------------------- | -------------------------------------------------- |
|
|
43
|
-
| Service Boundaries | `references/decomposition.md` | Monolith decomposition, bounded contexts, DDD |
|
|
44
|
-
| Communication | `references/communication.md` | REST vs gRPC, async messaging, event-driven |
|
|
45
|
-
| Resilience Patterns | `references/patterns.md` | Circuit breakers, saga, bulkhead, retry strategies |
|
|
46
|
-
| Data Management | `references/data.md` | Database per service, event sourcing, CQRS |
|
|
47
|
-
| Observability | `references/observability.md` | Distributed tracing, correlation IDs, metrics |
|
|
32
|
+
### Baseline standards
|
|
48
33
|
|
|
49
|
-
|
|
34
|
+
- Prefer clear bounded contexts over premature service count growth.
|
|
35
|
+
- Keep contracts explicit and versionable.
|
|
36
|
+
- Design for retries, timeouts, idempotency, and degraded modes.
|
|
37
|
+
- Treat tracing, logs, and metrics as required, not optional.
|
|
38
|
+
- Use async boundaries deliberately where coupling or latency demand it.
|
|
50
39
|
|
|
51
|
-
###
|
|
40
|
+
### Constraints
|
|
52
41
|
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
- Use async communication for cross-aggregate operations
|
|
58
|
-
- Design for failure and graceful degradation
|
|
59
|
-
- Implement health checks and readiness probes
|
|
60
|
-
- Use API versioning strategies
|
|
42
|
+
- Avoid splitting services without ownership clarity.
|
|
43
|
+
- Avoid shared databases masquerading as autonomy.
|
|
44
|
+
- Avoid chatty synchronous call chains with no resilience model.
|
|
45
|
+
- Avoid event-driven complexity when direct boundaries would be simpler.
|
|
61
46
|
|
|
62
|
-
|
|
47
|
+
## Output Format
|
|
63
48
|
|
|
64
|
-
|
|
65
|
-
- Share databases between services
|
|
66
|
-
- Use synchronous calls for long-running operations
|
|
67
|
-
- Skip distributed tracing implementation
|
|
68
|
-
- Ignore network latency and partial failures
|
|
69
|
-
- Create chatty service interfaces
|
|
70
|
-
- Store shared state without proper patterns
|
|
71
|
-
- Deploy without observability
|
|
49
|
+
Provide implementation guidance, code examples, and configuration as appropriate to the task.
|
|
72
50
|
|
|
73
|
-
##
|
|
51
|
+
## References
|
|
74
52
|
|
|
75
|
-
|
|
53
|
+
Load on demand. Do not preload all reference files.
|
|
76
54
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
4. Resilience patterns for each integration point
|
|
81
|
-
5. Deployment and infrastructure requirements
|
|
55
|
+
| File | Load when |
|
|
56
|
+
| --- | --- |
|
|
57
|
+
| `references/service-boundary-checklist.md` | You need a more detailed playbook for service seams, contracts, async boundaries, idempotency, and distributed failure modes. |
|
|
82
58
|
|
|
83
|
-
##
|
|
59
|
+
## Scripts
|
|
84
60
|
|
|
85
|
-
|
|
61
|
+
No helper scripts are required for this skill right now. Keep execution in `SKILL.md` and `references/` unless repeated automation becomes necessary.
|
|
86
62
|
|
|
87
|
-
##
|
|
63
|
+
## Examples
|
|
88
64
|
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
- **GraphQL Architect** - Federation for distributed schemas
|
|
92
|
-
- **Architecture Designer** - High-level system design
|
|
93
|
-
- **Monitoring Expert** - Observability implementation
|
|
65
|
+
- "Help me with microservices architect best practices in this project"
|
|
66
|
+
- "Review my microservices architect implementation for issues"
|