software-architecture-engineering-uap

software-architecture-engineering-uap is a skill for Claude Code, Codex from oghie/skillsets. It costs 110 tokens per session (2,265 once invoked), scanned A, original, MIT.

A structured method for designing and reviewing how software is divided into components, services, interfaces, and deployment parts. It connects requirements and constraints to architecture choices, trade-offs, evaluation, and implementation work.

In plain words
What is it for?
Use it for new system design, architecture reviews, modernization, refactoring, service and API design, security or identity design, architecture documentation, and implementation planning.
Why use it?
It reduces architecture decisions based on habit or vague preference. The method makes quality goals, risks, evidence, and validation steps explicit, including for microservices and Rust libraries.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the skillsets plugin — 9 skills, 4 commands, 1 hook, 4 MCP servers shipped together

Good fit Use it for new system design, architecture reviews, modernization, refactoring, service and API design, security or identity design, architecture documentation, and implementation planning.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oghie/skillsets/software-architecture-engineering-uap
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 oghie/skillsets --skill software-architecture-engineering-uap
Clone the repo
git clone --depth 1 https://github.com/oghie/skillsets

Made for: Claude Code, Codex.

Or install skillsets, the plugin that ships this one along with the rest of its 9 skills, 4 commands, 1 hook, 4 MCP servers.

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 software-architecture-engineering-uap

README.md
[![agentmods](https://agentmods.dev/badge/skills/oghie/skillsets/software-architecture-engineering-uap.svg)](https://agentmods.dev/skills/oghie/skillsets/software-architecture-engineering-uap)
Your own site
<a href="https://agentmods.dev/skills/oghie/skillsets/software-architecture-engineering-uap"><img src="https://agentmods.dev/badge/skills/oghie/skillsets/software-architecture-engineering-uap.svg" alt="Measured on agentmods" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,265 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.00110 $0.02265
Opus 5 $0.00055 $0.01132
Sonnet 5 $0.00022 $0.00453
Haiku 4.5 $0.00011 $0.00227

Measured 8d ago against content hash 76f8a49c3ffd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

software-architecture-engineering-uap 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 8d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/architecture_constraint_audit.py, scripts/architecture_static_audit.py, scripts/rust_library_surface_audit.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/software-architecture-engineering-uap/SKILL.md · 81 lines

How it starts

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

Software Architecture Engineering UAP

Core Rule

Treat architecture as traceable engineering: requirements -> context -> schematic style choices -> architecture views -> NFR tactics -> evaluation -> implementation work. Do not recommend structure, technology, or patterns without naming the forces, trade-offs, evidence, and validation path.

First Pass

  1. Classify the task: greenfield design, architecture review, modernization, decomposition, clean-code review/refactoring, Rust library/crate architecture, microservices pattern design, API/service design, data architecture, IAM/auth design, security-pattern design, cost-aware decision, deployment/operation planning, architecture-as-code governance, NFR design, evaluation, ADR/RFC, or implementation planning.
  2. Identify scope and risk: users, stakeholders, business goals, current system evidence, constraints, critical workflows, quality attributes, team/deployment context, and reversibility.
  3. Tailor the Unified Architecture Process: lightweight for local low-risk changes; full A1-A6 for high-risk, distributed, regulated, long-lived, or irreversible decisions.
  4. Decide the visual artifacts needed: boundary/context, use case, component, class/data, activity, sequence, state, deployment, development/operation, style schematic, NFR conformance map, policy enforcement map, or fitness-function map.
  5. Define verification before recommending: repository inspection, docs review, scenario walk-through, prototype, benchmark, threat model, operational review, or implementation test plan.

Required Reads By Task

  • Intake, scoping, or deciding how much process to use: tasks/intake-and-tailoring.md.
  • Ambiguous requirements, stakeholder conflict, or missing acceptance criteria: tasks/requirements-refinement.md.
  • External actors, integrations, data flows, system boundaries, or operational environment: tasks/system-context-analysis.md and references/context-and-views.md.
  • Architecture style choice, schematic structure, decomposition, or modernization target: tasks/schematic-architecture-design.md and references/architecture-style-catalog.md.
  • Microservices, modular monolith vs microservices, service decomposition, saga compensation/retry/idempotency, outbox relay/deduplication, CQRS projection/rebuild/lag, API composition, API gateway, BFF, service discovery, circuit breaker, event schema/order/replay/DLQ, contract testing, service chassis, service mesh, sidecar, strangler migration, anti-corruption layer, or production-ready service design: tasks/microservices-pattern-architecture-design.md and references/microservices-pattern-language.md.
  • Design principles, modularity, coupling/cohesion, KISS, SOLID, DRY, YAGNI, SoC, package boundaries, or code-level architecture heuristics: references/design-principles-and-modularity.md.
  • Clean code, code smells, refactoring, code review, craftsmanship, naming/functions/classes/comments/error handling/tests, behavior-preserving cleanup, technical debt reduction, or implementation hygiene: tasks/clean-code-refactoring-and-review.md, references/clean-code-craftsmanship.md, and templates/clean-code-review-checklist.md.
  • Rust library, crate, SDK, parser, reusable package, public API design, Cargo features, MSRV, SemVer, unsafe, FFI, no_std, macro crate, async crate, or senior QA/testing plan for a Rust library: tasks/rust-library-design-review-and-testing.md, references/rust-library-architecture.md, templates/rust-library-contract-matrix.md, and templates/rust-library-release-flow.mmd.
  • Functional, information, behavior, deployment, development, or operation design: tasks/architecture-view-design.md, references/context-and-views.md, references/development-and-operation-views.md, and references/diagram-visualization-guide.md.
  • Identity, IAM, authentication, authorization, sessions, tokens, MFA, passwordless, account lifecycle, admin users, audit logs, or auth API design: tasks/identity-access-design.md and references/iam-auth-architecture.md.
  • Security patterns, access-control models, policy engines, reference monitor, RBAC/ABAC/PBAC/ACL/capability, security logger/auditor, secure middleware/network patterns, misuse cases, or threat-driven design: tasks/security-pattern-architecture-design.md and references/security-architecture-patterns.md.
  • Cost, estimation, schedule/effort risk, operational cost, total ownership cost, performance capacity, resource-usage modeling, PERT/WBS/function points/COCOMO-style reasoning, or queueing models: tasks/cost-aware-architecture-decision.md and references/cost-estimation-and-performance-models.md.
  • Architecture-as-code, ADL-lite constraints, dependency rules, layer/database constraints, fitness functions, repository/package alignment, or architecture drift: tasks/architecture-as-code-governance.md and references/architecture-as-code-and-fitness-functions.md.
  • Performance, security, availability, modifiability, observability, compliance, or other NFR work: tasks/nfr-and-conformance-design.md and references/nfr-tactics-and-conformance.md.
  • Architecture evaluation, review gate, design risk assessment, or validation plan: tasks/architecture-evaluation.md and references/architecture-evaluation-methods.md.
  • Existing system review, refactor, migration, or modernization: tasks/architecture-review-and-modernization.md.
  • ADR/RFC writing, implementation breakdown, rollout, tests, or repository mapping: tasks/implementation-planning.md and references/engineering-translation.md.
  • When a prompt primarily belongs to another skill but code-level maintainability is material, use the cross-skill map in references/clean-code-craftsmanship.md; do not load clean-code material for pure strategy, research, or architecture-only prompts without code/refactoring/testability impact.
  • Quick UAP activity-step-task reminders or SRS intake extraction: references/uap-appendix-artifact-playbooks.md.
  • Final architecture quality check: references/review-checklist.md.

Read the full file on GitHub · 81 lines

Files

What ships with it

49 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 81 lines · 110 tokens per session scan A 76f8a49c3ffd

Subscribe to this mod's changes

software-architecture-engineering-uap is a skill published in the GitHub repository oghie/skillsets (9 stars, last pushed 1mo ago), licensed MIT. It adds 110 tokens to every session and 2,265 once invoked, about $0.0006 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

data-management-plan

Draft a funder-compliant Data Management Plan (NSF DMP, NIH DMS Policy 2023, ERC, Horizon Europe) by composing the confidential-data and environment-capture primitives. Sections cover data description, formats/metadata, storage/backup, access/sharing, preservation/archiving, and roles. Use when user says "data…

pedrohcgs/claude-code-my-workflow · 143 tokens

seven-pass-review

Mechanize Pattern 15 — the seven-pass adversarial review protocol for academic manuscripts. Spawns 7 forked subagents in parallel (abstract, intro, methods, results, robustness, prose, citations), then synthesizes a prioritized revision checklist. Use for submission-ready or R&R-stage papers where single-pass review…

pedrohcgs/claude-code-my-workflow · 70 tokens

slide-excellence

Multi-agent comprehensive slide review (visual + pedagogy + proofreading, plus TikZ / parity / substance conditionally). Use when user says "full review", "excellence pass", "comprehensive check", "review everything", "pre-release review", "slide excellence", or before teaching / shipping a deck. Fanout wrapper — for…

pedrohcgs/claude-code-my-workflow · 94 tokens

triage-inbox

Triage academic email and calendar (Gmail / Google Calendar via the session's MCP) into a prioritized digest plus a referee-obligations tracker — classifying referee requests, R&R and editor correspondence, co-author threads, seminar and conference invites, and grant/admin deadlines, and proposing a human-gated action…

pedrohcgs/claude-code-my-workflow · 132 tokens

scaffold-exercises

Scaffold a graded problem set with sections, problems, worked solutions, and short "why this matters" explainers across analytical, empirical, and coding types. Use when user says "make a problem set on X", "scaffold exercises for this lecture", "create practice problems", "generate homework with a solution key"…

pedrohcgs/claude-code-my-workflow · 101 tokens

validate-bib

Validate bibliography entries against citations in all lecture files. Structural checks (missing/unused entries, malformed fields) by default; --semantic adds citation-drift detection, DOI verification, and style-consistency checks.

pedrohcgs/claude-code-my-workflow · 47 tokens