enterprise-architecture

enterprise-architecture is a skill for Claude Code from saitarrun/Devforge-ai. It costs 29 tokens per session (619 once invoked), scanned A, original, Apache-2.0.

A set of technical standards for building large, business-critical cloud applications. It covers shared systems for multiple customers, access control, disaster recovery, data location, and audit records.

In plain words
What is it for?
Use it when designing multi-tenant systems, sign-in and permissions, backup and recovery targets, data residency, or records of user and system activity.
Why use it?
It helps teams address security, compliance, outages, and customer data separation before these become production problems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the devforge-ai plugin — 48 skills, 17 commands, 10 agents shipped together

Good fit Use it when designing multi-tenant systems, sign-in and permissions, backup and recovery…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saitarrun/devforge-ai/enterprise-architecture
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add saitarrun/Devforge-ai --skill enterprise-architecture
Clone the repo
git clone --depth 1 https://github.com/saitarrun/Devforge-ai

Made for: Claude Code.

Or install devforge-ai, the plugin that ships this one along with the rest of its 48 skills, 17 commands, 10 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for enterprise-architecture

README.md
[![agentmods](https://agentmods.dev/badge/skills/saitarrun/devforge-ai/enterprise-architecture.svg)](https://agentmods.dev/skills/saitarrun/devforge-ai/enterprise-architecture)
Your own site
<a href="https://agentmods.dev/skills/saitarrun/devforge-ai/enterprise-architecture"><img src="https://agentmods.dev/badge/skills/saitarrun/devforge-ai/enterprise-architecture.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 619 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00619
Opus 5 $0.00015 $0.00309
Sonnet 5 $0.00006 $0.00124
Haiku 4.5 $0.00003 $0.00062

Measured 7d ago against content hash fa83fbe8a4b4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

enterprise-architecture scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/enterprise-architecture/SKILL.md · 40 lines

How it starts

The opening of the file, as written. The whole thing — 40 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Enterprise Architecture & Compliance Standards Skill

This skill defines the technical criteria for mission-critical, enterprise-grade cloud applications.

1. Multi-Tenancy & Data Isolation

  • Tenant Isolation Models:
    • Silo Model: Dedicated database/schema per tenant for high compliance (SOC2/HIPAA/FedRAMP).
    • Pool Model: Shared database with row-level security (RLS) enforcement on all queries using tenant_id.
  • Tenant Context Propagation: Mandatory middleware injecting verified tenant_id and org_id into request contexts, background jobs, and audit events.

2. Enterprise Authentication & Authorization

  • SSO & Federation: SAML 2.0 and OIDC (Okta, Azure AD / Microsoft Entra, Google Workspace).
  • SCIM 2.0: Automated user provisioning and deprovisioning.
  • Fine-Grained RBAC & ABAC: Role-based and attribute-based access control with explicit policy engines (e.g. OPA, Casbin, Cerbos).
  • Session Security: Step-up MFA for sensitive mutations, device posture checks, IP allowlisting.

3. Audit Trails & Compliance Logging

  • Immutable Audit Trail: Append-only log of all data access, export, authentication, and mutation events.
  • Required Audit Fields: timestamp_utc, event_id, actor_id, actor_ip, tenant_id, resource_type, action, previous_state, new_state.
  • Retention & Immutability: Write-once-read-many (WORM) storage (AWS S3 Object Lock, GCP Bucket Retention) for 1 to 7 years depending on regulation (SOC2, HIPAA, FINRA).

4. Disaster Recovery & High Availability

  • RTO (Recovery Time Objective): Target < 15 minutes for critical Tier 1 services.
  • RPO (Recovery Point Objective): Target < 1 minute (continuous replication, point-in-time recovery).
  • Active-Active / Active-Passive Multi-Region: Cross-region database replication, health probes, automated DNS failover (Route53/Cloudflare).
  • Zero-Downtime Releases: Blue/Green or Canary deployments with automated rollback on health/SLO anomalies.

Read the full file on GitHub · 40 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 40 lines · 29 tokens per session scan A fa83fbe8a4b4

Subscribe to this mod's changes

enterprise-architecture is a skill published in the GitHub repository saitarrun/Devforge-ai (5 stars, last pushed 24d ago), licensed Apache-2.0. It adds 29 tokens to every session and 619 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

windows-deployment

Deploy FastAPI + React/Vite apps to Windows Server with NSSM services, reverse proxy (IIS or nginx), and git-pull workflow. Use when deploying any web app to a Windows prod server, setting up NSSM services, configuring IIS or nginx reverse proxy, making code environment-aware for dev/prod, or troubleshooting prod…

saajunaid/caddis-plugin · 74 tokens

aws-serverless-eda

AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows. Covers Lambda with TypeScript/Python, API Gateway (REST/HTTP), DynamoDB, Step Functions, EventBridge, SQS, SNS, and serverless…

saajunaid/caddis-plugin · 112 tokens

tcapi

A helper for managing Tencent Cloud resources through Tencent Cloud's command-line API tool. Tencent Cloud is a cloud-services provider offering products such as virtual servers, storage, networks, and containers.

TencentCloud/Octop · 68 tokens

deploy

Builds and deploys a Power Apps code app to Power Platform. Use when deploying changes, redeploying an existing app, or pushing updates.

microsoft/power-platform-skills · 32 tokens

liveview-patterns

Build LiveView: async data (assignasync), PubSub (check connected?), phx-change events, form components/modals/uploads, streams for lists, livepatch. Use when handling interactions, debugging events, or tracking Presence.

oliver-kriska/claude-elixir-phoenix · 51 tokens

perf

Analyze Elixir/Phoenix performance — N+1 queries, assign bloat, ecto optimization, genserver bottlenecks. Use when slowness, timeouts, or high memory reported.

oliver-kriska/claude-elixir-phoenix · 43 tokens