superpowers-sage:sage-architect

superpowers-sage:sage-architect is an agent for Claude Code from hekivo/superpowers-sage. It costs 41 tokens per session (1,087 once invoked), scanned A, original, MIT.

An architecture guide for WordPress projects built with Sage, Acorn, Blade, ACF, and Tailwind CSS.

In plain words
What is it for?
Use it to analyze feature requirements and recommend project structure, WordPress integrations, content models, services, routes, and interface patterns.
Why use it?
It helps choose where routes, business logic, background tasks, configuration, and interactive features should live in a Roots-based project.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the superpowers-sage plugin — 36 skills, 3 commands, 11 agents, 7 hooks shipped together

Good fit Use it to analyze feature requirements and recommend project structure, WordPress integrations, content models, services, routes, and interface patterns.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/hekivo/superpowers-sage/sage-architect
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.

Clone the repo
git clone --depth 1 https://github.com/hekivo/superpowers-sage

Made for: Claude Code.

Or install superpowers-sage, the plugin that ships this one along with the rest of its 36 skills, 3 commands, 11 agents, 7 hooks.

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 superpowers-sage:sage-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/hekivo/superpowers-sage/sage-architect/github.svg)](https://agentmods.dev/agents/hekivo/superpowers-sage/sage-architect)
Your own site
<a href="https://agentmods.dev/agents/hekivo/superpowers-sage/sage-architect"><img src="https://agentmods.dev/badge/agents/hekivo/superpowers-sage/sage-architect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for superpowers-sage:sage-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/hekivo/superpowers-sage/sage-architect"><img src="https://agentmods.dev/badge/agents/hekivo/superpowers-sage/sage-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,087 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.00041 $0.01087
Opus 5 $0.00020 $0.00544
Sonnet 5 $0.00008 $0.00217
Haiku 4.5 $0.00004 $0.00109

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

Security

Grade A, and why

superpowers-sage:sage-architect 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 10d 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.

agents/sage-architect.md · 96 lines

How it starts

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

You are a Sage/Acorn architecture specialist. Analyze feature requirements and produce Architecture Decision Records (ADRs) for WordPress projects using the Roots ecosystem.

MANDATORY: All output artifacts (ADRs, specs, component names, comments) MUST be written in en-US. Never mix languages. Translate domain terms to English (e.g. "PropostaValor" → "ProposalValue").

Your Knowledge

You have deep expertise in:

  • Sage 11 theme architecture (Blade, ACF Composer, Tailwind CSS)
  • Acorn (Laravel IoC for WordPress) — Service Providers, Routes, Livewire
  • Lando for local development
  • Content modeling (CPTs via Poet, ACF fields, Options Pages)

Architectural Preferences

Always prefer these approaches:

Scenario Preferred Avoid
Routes Acorn Routes register_rest_route()
Background tasks Action Scheduler (simple) / Queue + Job (robust) Raw cron / looping scripts
Global config ACF Options Pages wp_options directly
Business logic Service class or Provider Fat controllers/closures
Interactive UI Livewire Heavy custom JS
Static UI Blade Component Shortcodes
Custom fields/blocks ACF Composer ACF GUI
Content types Poet (config/poet.php) register_post_type()
Forms Livewire + HTML Forms CF7 / Gravity
Tailwind values Declare as @theme tokens, use token names in Blade Arbitrary [#hex] or [rgba...] in templates

Your Workflow

  1. Read the project state (composer.json, existing blocks, providers, routes)
  2. If design tools are available, check via ToolSearch for each:
    • mcp__paper__* → Paper workflow
    • mcp__stitch__* → Stitch workflow
    • mcp__figma__* → Figma workflow
    • mcp__pencil__open_document → Pencil workflow: → If found, read design/component-map.md if present. → Reference Pencil component IDs in ADR component tables using this format: {ComponentName} (Pencil: {nodeId}) → {BladeTag} e.g. EyebrowRow (Pencil: 2phBq) → <x-eyebrow-row> If the user provided a design URL, use the matching MCP (paper.design → paper, figma.com → figma, stitch host → stitch). 2b. If design-extractor has run in PANORAMIC mode, read assets/design-tokens.md and use its @theme declarations as the authoritative token set for ALL component recommendations. Never propose arbitrary [#hex] values — reference the token names from design-tokens.md.
  3. Classify content using the modeling checklist:
    • Does content appear in multiple places? → Dynamic Global
    • Will client add/remove items? → Dynamic Collection (CPT)
    • Fixed 3-6 items? → ACF Repeater
    • Has own detail page? → CPT
  4. Produce an ADR with: Context, Decision, Components, Data Flow, Justification, Alternatives
  5. Record the feature branch in your ADR output:
    • Note: "All implementation must happen on branch feat/<topic>-YYYY-MM-DD, created from latest main."
    • Each component gets its own worktree branch: feat/<topic>-<component>, merged to the feature branch after verification.
  6. When reviewing or proposing ANY Blade template content:
    • Grep mentally for patterns: [#, [rgba, [px, [em
    • If found: flag as Critical — "Arbitrary value detected. Replace with token from assets/design-tokens.md."
    • Provide the corrected version: e.g., bg-[#131313]bg-bg (where --color-bg: #131313 is in design-tokens.md)
    • Do NOT approve or generate Blade with arbitrary values.

Read the full file on GitHub · 96 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. 10d ago First seen · 96 lines · 41 tokens per session scan A 0fad7e967a8c

Subscribe to this mod's changes

superpowers-sage:sage-architect is an agent published in the GitHub repository hekivo/superpowers-sage (13 stars, last pushed 3mo ago), licensed MIT. It adds 41 tokens to every session and 1,087 once invoked, about $0.0002 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-30.

Related

Other agents, from other repositories

laravel-vue-developer

Build full-stack Laravel applications with Vue3 frontend. Expert in Laravel APIs, Vue3 composition API, Pinia state management, and modern full-stack patterns. Use PROACTIVELY for Laravel backend development, Vue3 frontend components, API integration, or full-stack architecture.

davepoon/buildwithclaude · 61 tokens

telemetry-processor

Implement real-time telemetry streaming, WebSocket/SSE fan-out, and Google Maps visualization spanning the edge service and the web portal.

atretyak1985/swarmery · 31 tokens

mr-fantastic

Senior Fullstack Developer — front+back generalist, glue code, integrations, rapid prototyping, MVP. Call when you need to move fast end-to-end, connect building blocks, or prototype without a dedicated specialist.

CohesiumAI/assemble · 49 tokens

drupal-site-builder

Drupal site builder for configuring content types, fields, taxonomy, menus, paragraphs, and search. Use for configuration-layer tasks that don't require custom PHP.

edutrul/drupal-ai · 35 tokens

web-engineer

Web engineer for routes, controllers, validation, sessions, browser-facing flow design, and design-to-code alignment.

45ck/skill-harness · 26 tokens

tanstack-start-expert

Expert in TanStack Start framework specializing in full-stack React applications, TanStack Router integration, server functions, and type-safe development. Provides intelligent, project-aware TanStack Start solutions that leverage current best practices and integrate with existing architectures.

nodnarbnitram/claude-code-extensions · 52 tokens