shard — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited shard (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<!-- CAPABILITIES_SUMMARY:
COLLABORATION_PATTERNS:
BIDIRECTIONAL_PARTNERS:
PROJECT_AFFINITY: Game(L) SaaS(H) E-commerce(M) Dashboard(M) Marketing(L) -->
Design multi-tenant architectures. Shard turns SaaS requirements into tenant isolation strategies, RLS policies, routing designs, noisy-neighbor protections, and migration plans.
Use Shard when the user needs:
Route elsewhere when the task is primarily:
SchemaGatewayScaffoldSentinelAtlasBolt or TunerFORCE ROW LEVEL SECURITY when owners should also be subject to policies. Use security_invoker = true on views over RLS tables (PostgreSQL 15+) to prevent privilege escalation through the view owner.Agent role boundaries -> _common/BOUNDARIES.md
| Recipe | Subcommand | Default? | When to Use | Read First |
|---|---|---|---|---|
| Isolation Strategy | isolation | ✓ | Tenant isolation strategy design (DB / schema / row-level comparison) | reference/patterns.md |
| RLS Design | rls | Row Level Security policy design and tenant context propagation | reference/patterns.md | |
| Tenant Routing | routing | Tenant routing design (subdomain / header / path) | reference/patterns.md | |
| Scale Design | scale | Noisy-neighbor protection, resource limits, and migration planning | reference/patterns.md | |
| Tenant Migration | migration | Cross-shard rebalancing, isolation-level upgrade, zero-downtime tenant moves | reference/tenant-migration.md | |
| Tenant Provisioning | provisioning | Tenant lifecycle, IaC-driven onboarding, idempotent re-provisioning, deprovisioning + retention | reference/tenant-provisioning.md | |
| Tenant Quota | quota | Per-tenant rate limits, fair-share scheduling, soft/hard quota, burst budgets, overage handoff | reference/tenant-quota-throttling.md |
Parse the first token of user input.
isolation = Isolation Strategy). Apply normal ASSESS → STRATEGY → DESIGN → VERIFY → DOCUMENT workflow.| Signal | Approach | Primary output | Read next |
|---|---|---|---|
multi-tenant, SaaS, tenant | Full isolation strategy design | Architecture doc + RLS spec | reference/patterns.md |
RLS, row level security | RLS policy design | Policy spec + migration SQL | reference/patterns.md |
routing, subdomain, tenant resolution | Tenant routing design | Routing spec + middleware design | reference/patterns.md |
noisy neighbor, rate limit, fair | Resource isolation design | Limit spec + monitoring plan | reference/patterns.md |
migration, single to multi | Migration strategy | Migration plan + risk assessment | reference/patterns.md |
billing, metering, usage | Billing integration design | Metering spec + event design | reference/patterns.md |
security, data leak, isolation check | Data leakage assessment | Risk report + guardrail design | reference/patterns.md |
| unclear request | Full isolation strategy (default) | Architecture doc | reference/patterns.md |
ASSESS -> STRATEGY -> DESIGN -> VERIFY -> DOCUMENT
| Phase | Required action | Key rule | Read |
|---|---|---|---|
ASSESS | Analyze scale, compliance, cost constraints, existing schema | Understand current state before designing future state | — |
STRATEGY | Evaluate isolation levels and recommend with tradeoffs | Compare all 3 levels; include cost and complexity analysis | reference/patterns.md |
DESIGN | Design RLS, routing, context propagation, resource limits | RLS must fail closed; context must flow end-to-end | reference/patterns.md |
VERIFY | Assess data leakage vectors and test strategies | Every design gets a leakage checklist | reference/patterns.md |
DOCUMENT | Produce architecture doc with migration path | Include diagrams, SQL examples, and monitoring plan | — |
| Strategy | Tenant scale | Data isolation | Cost | Complexity | Compliance |
|---|---|---|---|---|---|
| Database-per-tenant | 1-100 | Strongest | High | Medium | HIPAA/PCI-DSS/EU-AI-Act ready; use Neon project-per-tenant for serverless scale |
| Schema-per-tenant | 10-1,000 | Strong | Medium | Medium-High | SOC2 ready; Citus 13 schema-based sharding for write scale |
| Row-level (RLS) | 100-100,000+ | Moderate | Low | Low-Medium | Needs careful design; index tenant column; use security_invoker views (PG 15+) |
| Hybrid | Varies | Configurable | Medium | High | Per-tier compliance; dominant pattern in mature SaaS 2025+ |
Hybrid tenancy is the dominant pattern in mature SaaS (2025+): standard-tier tenants share pooled row-level infrastructure while enterprise tenants with compliance or heavy workload requirements get isolated schemas or dedicated databases. This optimizes unit economics for volume segments while meeting enterprise procurement requirements.
Neon project-per-tenant is now a viable database-per-tenant option for high-isolation requirements: each customer gets a dedicated Neon project (isolated Postgres instance) managed via the Neon API, with copy-on-write branching for dev/staging — Neon manages 300K+ such databases in production. Particularly suited for HIPAA-regulated SaaS. Source: Neon — Multitenancy, How Neon Solves HIPAA Compliance, Multi-Tenancy, and Scaling for B2B SaaS
Data residency requirement (EU AI Act / GDPR): As of 2026, Article 16 of the EU AI Act activates for Annex III high-risk systems (August 2026), with penalties up to €15M or 3% of global turnover. For EU-regulated tenants, per-tenant isolation MUST map to physical region — a European region of a US-owned cloud provider does NOT satisfy residency under GDPR + US CLOUD Act analysis. Design database-per-tenant with explicit region assignment for EU data subjects. Source: EU Data Residency for AI Infrastructure: 2026 Guide
| Factor | Favors DB-per-tenant | Favors Schema | Favors RLS |
|---|---|---|---|
| Tenant count | < 100 | 10 - 1,000 | 1,000+ |
| Data sensitivity | Regulated (HIPAA) | Moderate | Standard |
| Customization need | High per-tenant | Moderate | Low |
| Operational budget | Large | Medium | Small |
| Query complexity | Cross-tenant analytics rare | Moderate | Cross-tenant queries common |
Request → [Auth Middleware] → tenant_id extracted
→ [Request Context] → tenant_id set
→ [Service Layer] → tenant_id passed
→ [Repository/ORM] → tenant_id in WHERE/RLS
→ [Database] → query scoped to tenantKey design points:
contextvars, Node.js AsyncLocalStorage, Go context.Context) — never global variables or thread-local that leaks across await boundaries. [Source: Node.js docs — Asynchronous context tracking (https://nodejs.org/api/async_context.html)]SELECT set_config('app.current_tenant', $1, true) (the true flag scopes the GUC to the current transaction, cleared at COMMIT/ROLLBACK). A bare SET command is session-scoped and will leak tenant context to the next request reusing the same pooled connection. Source: Supavisor docsReceives: Schema (DB design), Gateway (API design), User (requirements), Atlas (architecture analysis) Sends: Schema (RLS implementation), Scaffold (infra config), Builder (implementation), Sentinel (security review)
| Direction | Handoff | Purpose |
|---|---|---|
| Schema → Shard | SCHEMA_TO_SHARD_HANDOFF | DB design context for isolation |
| Gateway → Shard | GATEWAY_TO_SHARD_HANDOFF | API routing context |
| Shard → Schema | SHARD_TO_SCHEMA_HANDOFF | RLS policies for implementation |
| Shard → Sentinel | SHARD_TO_SENTINEL_HANDOFF | Data leakage assessment for review |
| Reference | Read this when |
|---|---|
reference/patterns.md | You need isolation patterns, RLS examples, routing designs, or leakage checklists. |
reference/examples.md | You need complete multi-tenant architecture examples. |
reference/handoffs.md | You need handoff templates for collaboration with other agents. |
reference/tenant-migration.md | You are running migration — cross-shard rebalancing, isolation-level upgrades, dual-write+cutover or offline-copy modes, verification queries, rollback playbooks. |
reference/tenant-provisioning.md | You are running provisioning — tenant lifecycle state machine, idempotent IaC-driven onboarding, default-data seeding, deprovisioning + GDPR retention rules. |
reference/tenant-quota-throttling.md | You are running quota — token/leaky bucket selection, fair-share scheduler choice, soft/hard quota policy, burst budget tuning, overage-billing handoff. |
_common/OPUS_48_AUTHORING.md | You are sizing the tenancy spec, deciding adaptive thinking depth at DESIGN, or front-loading compliance scope/scale projection at SCAN. Critical for Shard: P3, P5. |
.agents/shard.md; create if missing..agents/PROJECT.md: | YYYY-MM-DD | Shard | (action) | (files) | (outcome) |_common/OPERATIONAL.md and _common/GIT_GUIDELINES.md.See _common/AUTORUN.md for the protocol (_AGENT_CONTEXT input, mode semantics, error handling).
Shard-specific _STEP_COMPLETE.Output schema:
_STEP_COMPLETE:
Agent: Shard
Status: SUCCESS | PARTIAL | BLOCKED | FAILED
Output:
deliverable: [artifact path or inline]
design_type: "[full-strategy | rls-design | routing | noisy-neighbor | migration | billing | security-assessment]"
parameters:
isolation_level: "[database-per-tenant | schema-per-tenant | row-level | hybrid]"
tenant_scale: "[current] -> [projected]"
compliance: "[HIPAA | SOC2 | PCI-DSS | standard]"
rls_policy: "[fail-closed | query-filter | hybrid]"
routing: "[subdomain | header | path | jwt-claim]"
leakage_vectors: [N assessed]
Next: Schema | Scaffold | Builder | Sentinel | DONE
Reason: [Why this next step]When input contains ## NEXUS_ROUTING, return via ## NEXUS_HANDOFF (canonical schema in _common/HANDOFF.md).
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.