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.
npx skills add oghie/skillsets --skill software-architecture-engineering-uapgit clone --depth 1 https://github.com/oghie/skillsetsWrote 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.
[](https://agentmods.dev/skills/oghie/skillsets/software-architecture-engineering-uap)<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>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.
| Model | Per session | Once 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 |
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.
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.
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
- 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.
- Identify scope and risk: users, stakeholders, business goals, current system evidence, constraints, critical workflows, quality attributes, team/deployment context, and reversibility.
- Tailor the Unified Architecture Process: lightweight for local low-risk changes; full A1-A6 for high-risk, distributed, regulated, long-lived, or irreversible decisions.
- 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.
- 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.mdandreferences/context-and-views.md. - Architecture style choice, schematic structure, decomposition, or modernization target:
tasks/schematic-architecture-design.mdandreferences/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.mdandreferences/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, andtemplates/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, andtemplates/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, andreferences/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.mdandreferences/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.mdandreferences/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.mdandreferences/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.mdandreferences/architecture-as-code-and-fitness-functions.md. - Performance, security, availability, modifiability, observability, compliance, or other NFR work:
tasks/nfr-and-conformance-design.mdandreferences/nfr-tactics-and-conformance.md. - Architecture evaluation, review gate, design risk assessment, or validation plan:
tasks/architecture-evaluation.mdandreferences/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.mdandreferences/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.
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.
- agent.md 4.7 KB
- agents/openai.yaml 571 B
- references/architecture-as-code-and-fitness-functions.md 5.0 KB
- references/architecture-evaluation-methods.md 7.1 KB
- references/architecture-style-catalog.md 7.6 KB
- references/clean-code-craftsmanship.md 19 KB
- references/context-and-views.md 5.6 KB
- references/cost-estimation-and-performance-models.md 6.5 KB
- references/design-principles-and-modularity.md 7.9 KB
- references/development-and-operation-views.md 3.3 KB
- references/diagram-visualization-guide.md 5.9 KB
- references/engineering-translation.md 5.1 KB
- references/iam-auth-architecture.md 14 KB
- references/microservices-pattern-language.md 18 KB
- references/nfr-tactics-and-conformance.md 5.6 KB
- references/review-checklist.md 8.6 KB
- references/rust-library-architecture.md 20 KB
- references/security-architecture-patterns.md 9.0 KB
- references/uap-appendix-artifact-playbooks.md 3.7 KB
- references/uap-process-map.md 5.5 KB
- scripts/architecture_constraint_audit.py 7.8 KB runs code
- scripts/architecture_static_audit.py 21 KB runs code
- scripts/rust_library_surface_audit.py 9.5 KB runs code
- tasks/architecture-as-code-governance.md 1.2 KB
- tasks/architecture-evaluation.md 1.7 KB
- tasks/architecture-review-and-modernization.md 3.2 KB
- tasks/architecture-view-design.md 2.8 KB
- tasks/clean-code-refactoring-and-review.md 4.6 KB
- tasks/cost-aware-architecture-decision.md 1.4 KB
- tasks/identity-access-design.md 4.6 KB
- tasks/implementation-planning.md 2.8 KB
- tasks/intake-and-tailoring.md 1.6 KB
- tasks/microservices-pattern-architecture-design.md 3.1 KB
- tasks/nfr-and-conformance-design.md 2.1 KB
- tasks/requirements-refinement.md 2.0 KB
- tasks/rust-library-design-review-and-testing.md 7.8 KB
- tasks/schematic-architecture-design.md 1.9 KB
- tasks/security-pattern-architecture-design.md 1.5 KB
- tasks/system-context-analysis.md 2.0 KB
- templates/architecture-as-code-alignment.mmd 225 B
- templates/clean-code-review-checklist.md 4.0 KB
- templates/mermaid-clean-code-refactor-loop.mmd 469 B
- templates/mermaid-microservices-pattern-map.mmd 949 B
- templates/microservices-pattern-decision-matrix.md 2.5 KB
- templates/nfr-conformance-map.mmd 461 B
- templates/reference-monitor.mmd 365 B
- templates/rust-library-contract-matrix.md 2.1 KB
- templates/rust-library-release-flow.mmd 824 B
- templates/uap-flow.mmd 415 B
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.
- 8d ago First seen · 81 lines · 110 tokens per session scan A 76f8a49c3ffd
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.
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…
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…
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…
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…
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"…
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.