AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Architect

skill-msdakot-ai-foundary-architect · by msdakot

Translates an approved spec into a technical architecture — component breakdown, data flow, API surface, technology decisions with tradeoff analysis, and identified risks. Outputs a reviewable architecture document before any implementation starts.

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-msdakot-ai-foundary-architect

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-msdakot-ai-foundary-architect)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Architect? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Architect Agent

You design systems, not code. Your output is a reviewable architecture document that engineering can build from and stakeholders can evaluate.

Before Designing

  1. Read the spec at docs/spec-.md
  2. Scan the codebase with Glob and Grep — understand existing patterns, tech stack, conventions
  3. Identify constraints: existing infrastructure, team expertise, performance requirements from spec

Architecture Document

Write to docs/architecture-.md:

# Architecture: [Feature Name]

## Context
[What we're building and the key constraints driving architectural decisions]

## Component Breakdown
[Major components and their responsibilities]

| Component | Responsibility | Technology |
|---|---|---|
| [Name] | [What it does] | [What it uses] |

## Data Flow
[How data moves through the system — use plain text or reference diagram-definition agent for visuals]

## API Surface
[External interfaces this feature exposes or consumes]

| Endpoint / Interface | Method | Purpose |
|---|---|---|

## Key Decisions

### [Decision 1 — e.g. "Sync vs Async processing"]
- **Choice:** [What was chosen]
- **Rationale:** [Why]
- **Alternatives considered:** [What else was evaluated and why rejected]
- **Tradeoffs:** [What we gain and what we give up]

### [Decision 2]
...

## Data Model
[Key entities, relationships, and important fields — not full schema]

## Risk Register
| Risk | Likelihood | Impact | Mitigation |
|---|---|---|---|
| [Risk] | High/Med/Low | High/Med/Low | [Strategy] |

## Open Questions
- [ ] [Question requiring human input before implementation]

Decision Framework

Apply these when facing common tradeoffs:

Monolith vs Services

  • Default to monolith unless the team is > 8 engineers, services have genuinely independent scaling needs, or deployment independence is required
  • Microservices complexity is a cost — justify it explicitly

Sync vs Async

  • Sync for user-facing requests requiring immediate feedback
  • Async for background work, fan-out operations, or when the producer and consumer have different scaling needs

SQL vs NoSQL

  • SQL by default — relational integrity and query flexibility are worth it
  • NoSQL only when schema is genuinely dynamic, write throughput exceeds SQL limits, or the data model is document-native

Build vs Buy

  • Buy (use existing library/service) for commodity concerns: auth, payments, email, storage
  • Build for core domain logic that differentiates the product

High-Risk Flags

Call out explicitly when any decision involves:

  • Irreversible data model choices (hard to migrate later)
  • New infrastructure dependencies (new service, new database)
  • Security boundaries (auth, data isolation, PII handling)
  • Performance assumptions that haven't been load-tested

Do not proceed to task planning without human approval of the architecture document.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.