Describe your app idea in one line. Get a shipped iOS & Android app. AI App Studio is a team of 30 AI specialists — a CEO, product manager, designers, iOS/Android engineers, a code reviewer, QA, and a release manager — that works like a real software studio.
FAQ
app-dev-team is a Claude Code plugin with 31 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes accessibility-gate, agent-isolation, architecture-builder. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add vmobifystudio/app-dev-team> /plugin install app-dev-team@mobify-studio
Repo: vmobifystudio/app-dev-team
Describe your app idea in one line. Get a shipped iOS & Android app.
AI App Studio is a team of 30 AI specialists — a CEO, product manager, designers, iOS/Android engineers, a code reviewer, QA, and a release manager — that works like a real software studio. It takes your idea from scope → design → code → review → store, building in parallel, reviewing and fixing its own work, and stopping for you at only the two moments that matter: what we're building and whether to ship.
Ships as the app-dev-team Claude Code plugin — see Install.
# In Claude Code, from an empty folder:
/app-run "A habit tracker for new parents, iOS + Android, freemium"
That one command spins up the whole studio. It pauses once so you can approve the plan, then builds the app autonomously — parallel engineers, automated code review, QA, and a bug-fix loop — giving you a short standup after each round, and pauses again only when it's ready to ship.
Already have an app? Point it at your existing code instead and it works in reverse — reads the codebase, grades it against professional standards, and closes the gaps:
/app-onboard # understand the existing app
/app-audit # score it, list the issues, fix them
Most "AI builds your app" tools are a single agent improvising — it writes some code, forgets the plan, and leaves you to be the project manager. Real apps aren't built that way. They're built by a team with roles, handoffs, conventions, and a review gate.
AI App Studio models that team. Each role is a focused AI specialist that does one job well and hands off to the next:
flowchart TD
idea([💡 Your one-line idea])
subgraph EXEC["🎩 Executive — decides what and why"]
direction LR
CEO[CEO<br/>vision and goals]
CPO[CPO<br/>product spec]
CTO[CTO<br/>tech and architecture]
end
subgraph MGMT["🗂️ Management — plans and coordinates"]
direction LR
TL[Tech Lead<br/>build specs]
TM[Tech Manager<br/>runs the board · merge gate]
end
subgraph ENG["⚙️ Engineering — builds and verifies"]
direction LR
IOS[iOS dev]
AND[Android dev]
BE[Backend dev]
MON[Monetization]
REV[Code Reviewer]
QA[QA]
VER[Verification]
end
subgraph GROW["🎨 Design and Growth"]
direction LR
UX[UX Designer]
ASO[Store Listing]
DATA[Analytics]
end
subgraph REL["🚀 Platform and Release"]
direction LR
OPS[DevOps]
SEC[Security]
RM[Release Manager]
end
idea --> EXEC --> MGMT --> ENG --> GROW --> REL --> ship([📦 Shipped app on the store])
The engineers work in parallel. The code reviewer is a real gate — nothing merges until it passes (and on iOS it runs ~25 specialist auditors for accessibility, concurrency, security, and more). QA files bugs, the team fixes them in a loop, and you get a daily standup the whole way.
You stay in control at exactly two gates. Everything between them runs on its own.
flowchart LR
A([💡 idea]) --> B["/app-init<br/>vision · spec · architecture"]
B --> G1{{"🔒 GATE 1<br/>scope-lock<br/><i>you approve the plan</i>"}}
G1 --> C["/app-plan<br/>parallel board"]
C --> D["/app-build loop<br/>parallel devs → code review →<br/>merge → QA → bug fixes → standup"]
D --> E["ship-readiness<br/>store assets · security · analytics"]
E --> G2{{"🚀 GATE 2<br/>ship<br/><i>you confirm</i>"}}
G2 --> F([📦 store upload])
style G1 fill:#fde68a,stroke:#b45309,color:#000
style G2 fill:#bbf7d0,stroke:#15803d,color:#000
"Mostly autonomous" means it shows you the seams. It never invents intent when a requirement is ambiguous — it writes the blocker into the standup and surfaces it to you verbatim, instead of guessing and building the wrong thing.
The board is the team's only memory across agent invocations, and every row is written by an agent editing a Markdown table. So two checks run mechanically rather than on trust:
scripts/board-doctor.mjs) runs before any agent is spawned, every round.
It catches the failure the loop is structurally blind to: a ticket whose dependency is blocked
is never "ready" and never in review, so the sprint would otherwise exit and report success
without ever mentioning it. It also catches missing/invalid owners, broken and circular
dependencies, self-review, tickets that reached qa/done without an approval on record, and a
breached review-cycle cap. Anomalies stop the loop; nothing spawns until the board is repaired.scripts/verify-done.sh) checks a developer's DONE: APP-NNN against git
before the row moves to review — branch exists, commits are actually there, files changed, and
the test command exits zero. A self-reported "tests: all green" is never taken at face value.Both are plain Node + POSIX sh with no dependencies, and the board-doctor skill carries a manual
checklist so a vanilla install without Node still performs the check by hand.
Agents don't shout into one shared room, and they don't route every sentence through a human.
docs/team/messages.jsonl is an append-only event log — question, answer,
handoff, blocker, escalation, decision — so an IC can ask the tech lead one question and
keep working, instead of hard-blocking and paying for a full re-spawn. docs/team/messages.md is
its generated view; channels and threads are queries over the log, never places state is written.answer
that names no artifact is refused too: a closed ledger is not delivery.node scripts/board-render.mjs docs/31-board.md --out docs/32-board-view.md
A terminal kanban, per-owner load, a NEEDS ATTENTION block, and a Mermaid dependency graph that
renders on GitHub — with stranded and blocked tickets outlined in red. /app-status prints it;
/app-build regenerates it each round.
The reviewer no longer just reads a diff. It applies the defect-hunting skill, mined from a real
remediation programme where twelve screen-by-screen review rounds found nothing new and one round
organised by data path found dozens of live defects:
contains() over prose — one was tripped by its own comment. New rules must
be watched failing before they are trusted.verification-engineer owns this at release time and gates /app-ship.
node scripts/team-doctor.mjs
board-doctor validates a project's board. team-doctor validates the team definition — the
gaps that are invisible by construction: a role nothing ever spawns, a role that can own a ticket
but that /app-build never launches (the ticket is never picked up and never reported), a
referenced skill that doesn't exist, a handoff pointing at nobody, a doc one role writes that no
role reads. Each of those was a live defect found by hand once.
flowchart TD
Q{What are you<br/>starting from?}
Q -->|"empty folder<br/>(new app)"| GF["/app-init → /app-build → /app-ship"]
Q -->|"existing codebase<br/>(your app today)"| BF["/app-onboard → /app-audit → fix gaps"]
GF --> S([📦 shipped app])
BF --> S2([✅ healthier, audited app])
style GF fill:#dbeafe,stroke:#1d4ed8,color:#000
style BF fill:#fae8ff,stroke:#a21caf,color:#000
/app-run auto-detects which path you're on, so you can always just start there.
| You are… | You use it to… |
|---|---|
| 🚀 An indie founder / solopreneur | Turn an idea into a real, store-ready iOS + Android app without hiring a team — and without being the project manager. |
| 🧑💻 A developer who's stretched thin | Offload the scaffolding, boilerplate, store setup, and the boring-but-critical review/QA passes, so you focus on the hard parts. |
| 🏢 A small studio shipping many apps | Encode your house conventions once; every new app comes out in your style, not generic AI defaults — and the studio improves after each ship. |
| 🛠️ A team with an existing app | Onboard the codebase, audit it against professional standards (accessibility, security, performance, store readiness), and get a prioritized fix list. |
| 📚 Someone learning to build apps | Watch a structured team make decisions — read the vision, PRD, architecture, and reviews it writes, like a senior team thinking out loud. |
| ⏱️ Anyone validating an idea fast | Go from "what if there was an app that…" to a working build you can put in front of users. |
| 🤖 One AI agent improvising | 🏗️ AI App Studio | |
|---|---|---|
| Structure | One context doing everything; forgets the plan | 18 focused roles with clear handoffs and ownership |
| Code review | None — it ships whatever it wrote | A real review gate; nothing merges until it passes |
| Quality bar | Generic AI defaults | Your house conventions + ~25 iOS specialist auditors |
| Parallelism | Sequential, slow | Engineers build features in parallel |
| Ambiguity | Guesses and moves on | Stops, writes the blocker, asks you |
| Existing apps | Starts from scratch | Onboards, audits, and remediates what you already have |
| Memory | Forgets between steps | Shared Markdown docs are the team's long-term memory |
| Gets better | Same every time | Living knowledge base improves after each shipped app |
| Dependencies | Varies | Zero — pure Claude Code, clone and run |
This repo is its own Claude Code marketplace, so installing is two commands. Inside Claude Code:
/plugin marketplace add vmobifystudio/app-dev-team
/plugin install app-dev-team@mobify-studio
💡 AI App Studio is the friendly name for the
app-dev-teamplugin — that's the ID you install and the command prefix (/app-*) you'll use.
The plugin is enabled automatically — its 18 agents, 11 commands, and skills are now available.
Run /plugin anytime to browse, enable/disable, or remove it. To update later, re-run
/plugin marketplace add vmobifystudio/app-dev-team and reinstall.
A specific version/branch — append a git ref:
/plugin marketplace add vmobifystudio/app-dev-team@main
Local clone (for hacking on it) — point Claude Code at a local checkout:
git clone https://github.com/vmobifystudio/app-dev-team
/plugin marketplace add ./app-dev-team
/plugin install app-dev-team@mobify-studio
/plugin marketplace add also accepts a full git URL (https://…/app-dev-team.git) for non-GitHub hosts.
# From the root of a new (empty) project directory, in Claude Code:
/app-run "A habit tracker for new parents, iOS + Android, freemium"
/app-run drives the whole thing. It pauses once for scope-lock (approve the vision + PRD +
architecture), then runs the sprint autonomously — parallel devs → code review → merge → QA → bug
loop — streaming a standup after each round, and pauses again only at ship.
Prefer to drive manually? Use the granular commands below.
Point it at an existing codebase and it works the other direction — read the code, grade it against your standards, and close the gaps:
# from your existing app's repo root, in Claude Code:
/app-onboard # detect stack, reverse-engineer as-built architecture + CLAUDE.md
/app-audit # score vs the House KB + Axiom auditors → gap report → remediation backlog
/app-audit ranks every finding by severity and the exact house rule it violates, then builds a
remediation backlog and pauses so you choose what to fix. Safe fixes (accessibility, tokens,
localization, lint, missing analytics) are automated; risky changes (migrations, refactors,
concurrency rewrites, billing logic) get a written plan and only proceed with your approval.
/app-run does this automatically when it detects a non-empty app directory.
| Layer | Agent | Owns |
|---|---|---|
| Exec | ceo | Vision, success metrics, scope |
cpo | PRD, user stories, backlog | |
cto | Architecture & stack (starts from the House KB defaults) | |
| Management | tech-lead | Per-platform impl specs, reusable patterns |
tech-manager | Sprint board, parallel coordination, standups, merge gate | |
| Engineering | ios-developer | SwiftUI — routes through Axiom iOS skills (parallel) |
android-developer | Compose/Material 3 (parallel) | |
backend-developer | API + persistence (when in scope) | |
monetization-engineer | StoreKit/Play Billing IAP, paywall gateway, AdMob + consent | |
code-reviewer | The gate — runs Axiom auditor agents on iOS branches | |
qa-engineer | Test plans, bug filing, ship sign-off | |
verification-engineer | Executes what everyone else asserts — constants, guard rules, agent reports | |
| Design & Growth | ux-architect | Information architecture, navigation, flows, screen-and-state inventory |
product-designer | Screen composition, hierarchy, interaction, tokens, components | |
aso-specialist | Store listing, keywords, screenshots, readiness gate | |
data-analyst | Analytics schema, instrumentation check, post-launch KPIs | |
| Platform & Release | devops-engineer | Git strategy, CI, signing, flavors, secrets hygiene |
security-reviewer | Pre-ship MASVS pass, severity-classified findings |
Every build agent invokes the house-conventions skill before working, plus agent-isolation
(its own git worktree) and team-protocol (how it talks to the rest of the team). Roles are just
Markdown files — add, remove, or retune them.
| Command | What it does |
|---|---|
/app-run [idea] | The autonomous driver — auto-detects greenfield vs existing app, then init/onboard → gate → sprint loop → ship-readiness. --yolo skips the gate; wrap in /loop for hands-off pacing. |
/app-init [idea] | (New app) Intake → CEO vision → parallel CPO/CTO → parallel ux/tech-lead/devops → bootstraps the project CLAUDE.md, .gitignore, and git strategy. |
/app-onboard [path] | (Existing app) Detect the stack, reverse-engineer the as-built architecture + feature inventory, generate CLAUDE.md — so the team understands the codebase. |
/app-audit [dimension] | (Existing app) Grade it against the House KB + Axiom auditors → severity-ranked gap report (docs/80-audit.md) → remediation backlog → gate → fix (safe auto, risky on approval). |
/app-plan [focus] | Tech-manager turns backlog + specs into a parallel-friendly board. |
/app-build [tickets] | Board-doctor gate → spawns devs/reviewers/QA in parallel → verifies each DONE against git → streams reviews → gates merges → loops the bug fixes. 2-cycle review cap. |
/app-review <branch> | Code review on a single branch. |
/app-preflight [path] [--ticket APP-NNN] | Verify repository context, dependencies, versions, policy evidence, and source-of-truth documents before work. |
/app-context | Create or verify the explicit context manifest used by an execution attempt. |
/app-run-status | Check durable run leases, checkpoints, and orphaned attempts. |
/app-recover | Recover interrupted work through an explicit terminal ledger record. |
/app-memory | Govern durable memory proposals, provenance, promotion, rejection, and contradictions. |
/app-eval | Run deterministic role, policy, and workflow evaluation fixtures. |
/app-schedule | Compute dependency-ready work with bounded parallelism and backpressure. |
knowledge/)Mined from our internal shipped apps, this is the studio's accumulated taste — the architecture, monetization, analytics, and store conventions that make output production-grade instead of generic. Every build agent reads the relevant pack first:
| Pack | Encodes |
|---|---|
stack-defaults.md | Default languages, versions, libraries, SDK targets |
ios-conventions.md | Layering, Display DTOs, Swift 6 concurrency rules, DI, tokens, a11y |
android-conventions.md | Clean Architecture modules, the 5 ViewModel patterns, Room/DataStore |
monetization.md | Two-door paywall gateway, StoreKit/Play Billing, AdGate, consent |
analytics.md | Consent-gated events, PII rules, funnels, retention |
aso.md | Screenshot automation, Play Data Safety, store-readiness gate |
git-workflow.md | Branch model, commit conventions, versioning, CI, secrets |
failure-corpus.md | The defect classes this codebase actually produces — the tell a reviewer greps for, the dated instances, and the rule that now catches each one |
The operating skills also include context-preflight, dependency-policy, policy-checker, and
git-pr-strategy. These are invoked before implementation, dependency/toolchain changes, sensitive
reviews, and Git/PR lifecycle actions; they complement rather than duplicate agent-isolation,
team-protocol, house-conventions, defect-hunting, and mutation-testing.
It's living — /app-learn folds new learnings from each shipped app back in, and flags
conflicts (it never silently overwrites a convention).
Every pack but one learns from apps that shipped, which means the KB only ever learned from
success. failure-corpus.md is the other half: code-reviewer and verification-engineer run its
tells before improvising their own, because prior information about what goes wrong here beats a
generic checklist of what could go wrong anywhere. Its most valuable output is a class that recurs
after its rule shipped — team-doctor fails on that, because it is proof the rule does not work.
The plugin is dependency-free, but gets dramatically better when these are installed (they're soft-routed — absent ones degrade gracefully to the House KB defaults):
mobile-android-design, mobile-ios-design, …) and ui-ux-pro-max.CLAUDE.md project conventions (seeded from the House KB)
docs/
00-vision · 01-intake · 10-prd · 11-backlog
12-flows · 13-design-tokens · 14-components · 15-aso
20-architecture · 21-engineering-principles · 22-impl-spec-{ios,android,backend}
23-git-strategy · 40-api · 41-monetization
50-test-plan · 51-bugs · 52-analytics
60-releases · 70-security-review
80-audit.md (brownfield: gap report vs the House KB)
daily/standup-YYYY-MM-DD.md
ios/ android/ backend/ (per scope)
agents/ — edit, add (e.g. ml-engineer), or remove.knowledge/stack-defaults.md — change them once, every project follows./app-run --yolo to skip scope-lock; /loop /app-run … for fully self-paced runs.It is not a robot you turn on and walk away from. It is a structured team that drafts most of the work, holds itself to your conventions, reviews and fixes its own code, and shows you the seams at the two moments that actually need a human: what we're building, and whether to ship it.
See CONTRIBUTING.md. Everything here is Markdown — no build step.
MIT © Mobify Studio
.claude-plugin/
marketplace.json
plugin.json
.github/
workflows/
checks.yml
mutation-full.yml
runtime-gate.yml
.gitignore
agents/
android-developer.md
aso-specialist.md
backend-developer.md
ceo.md
chief-of-staff.md
code-reviewer.md
cpo.md
cto.md
data-analyst.md
devops-engineer.md
incident-commander.md
ios-developer.md
monetization-engineer.md
privacy-reviewer.md
product-designer.md
product-manager.md
product-researcher.md
product-validator.md
qa-engineer.md
red-team-agent.md
release-auditor.md
release-manager.md
reliability-engineer.md
security-reviewer.md
tech-lead.md
tech-manager.md
test-automation-engineer.md
ux-architect.md
verification-engineer.md
web-developer.md
CHANGELOG.md
commands/
app-audit.md
app-build.md
app-capabilities.md
app-context.md
app-control-room.md
app-dashboard.md
app-eval.md
app-impact.md
app-incident.md
app-init.md
app-learn.md
app-manager-failover.md
app-manager-harness.md
app-memory.md
app-onboard.md
app-plan.md
app-portfolio.md
app-preflight.md
app-recover.md
app-review.md
app-risk.md
app-run-status.md
app-run.md
app-schedule.md
app-ship.md
app-status.md
app-team.md
CONTRIBUTING.md
control-room/
.gitignore
index.html
package-lock.json
package.json
README.md
server.mjs
src/
App.tsx
main.tsx
screens/
Board.tsx
Comms.tsx
Inbox.tsx
Mission.tsx
Team.tsx
smoke.tsx
styles.css
types.ts
ui.tsx
state.mjs
tsconfig.json
vite.config.ts
docs/
00-founder-intent/
README.md
02-team-roster.md
03-decision-rights.md
2026-07-29-revamp-master-plan.md
2026-07-29-studio-os-plan.md
2026-08-03-self-improvement-and-skill-reuse-plan.md
2026-08-04-consolidated-enhancement-plan.md
24-repository-controls.md
dry-runs/
2026-08-01-android-small-app.md
2026-08-01-blood-pressure-journal-review.md
2026-08-01-daily-reading-log-workflow-review.md
2026-08-01-tap-counter-real-multiagent-pilot.md
2026-08-02-blood-pressure-journal-10-10-readiness-plan.md
2026-08-02-blood-pressure-journal-expert-audit.md
2026-08-04-dogfood-1-findings.md
2026-08-04-dogfood-1-hypotheses.md
2026-08-04-dry-run-6-findings.md
2026-08-04-dry-run-6-hypotheses.md
2026-08-04-medication-companion-operational-audit-and-revamp-plan.md
2026-08-04-medication-companion-pilot-log.md
foundation/
2026-08-04-all-twelve-green.txt
2026-08-04-baseline-red.txt
HANDBOOK.md
research/
2026-07-29-agent-teams-ai-orchestration-study.md
2026-07-29-dry-run-2-worktree-isolation.md
2026-07-29-dry-run-3-full-sprint.md
2026-07-29-dry-run-4-findings.md
2026-07-29-dry-run-4-hypotheses.md
2026-07-29-dry-run-parallel-agent-collision.md
2026-07-30-dry-run-5-findings.md
2026-07-30-dry-run-5-hypotheses.md
RESUME.md
reviews/
2026-07-31-ai-development-team-strategy-architecture-review.md
2026-07-31-deferred-implementation-review-notes.md
2026-07-31-plugin-review-action-plan.md
2026-08-01-app-ship-end-to-end-audit.md
2026-08-03-global-plugin-enhancement-plan.md
2026-08-03-post-enhancement-end-to-end-audit.md
superpowers/
specs/
2026-06-01-app-dev-team-v1-design.md
team/
capabilities.json
impact-map.json
incidents.jsonl
journeys/
README.md
prompt-registry.json
risk-policy.json
schedule.json
eval/
accessibility-violation/
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
src/
PaywallView.swift
ci-that-cannot-fail/
.github/
workflows/
ci.yml
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
clean/
.github/
workflows/
ci.yml
docs/
10-prd.md
31-board.md
50-test-plan.md
51-bugs.md
52-analytics.md
manifest.json
src/
Fees.swift
conflicting-requirements/
docs/
10-prd.md
20-architecture.md
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
crash-on-launch/
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
project.yml
src/
App.swift
fake-test-command/
docs/
30-sprint-plan.md
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
src/
Tip.swift
malicious-repo-instruction/
CONTRIBUTING.md
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
manager-scenario.json
manifest.json
missing-analytics/
docs/
10-prd.md
31-board.md
50-test-plan.md
51-bugs.md
52-analytics.md
manifest.json
open-s1-at-ship/
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
privacy-disclosure-mismatch/
docs/
15-aso.md
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
src/
Analytics.swift
self-approved-ticket/
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
shared-file-collision/
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
src/
Paywall.swift
stale-approval/
docs/
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
subscription-restore-bug/
docs/
31-board.md
41-monetization.md
50-test-plan.md
51-bugs.md
manifest.json
src/
Store.swift
wrong-financial-constant/
docs/
10-prd.md
31-board.md
50-test-plan.md
51-bugs.md
manifest.json
src/
Fees.swift
hooks/
block-shared-tree-destructive-git.sh
hooks.json
knowledge/
analytics.md
android-conventions.md
aso.md
failure-corpus.md
git-workflow.md
ios-conventions.md
monetization.md
README.md
stack-defaults.md
LICENSE
README.md
scripts/
accessibility-scan.mjs
analytics-coverage-scan.mjs
approval-check.mjs
audit-anchor.mjs
board-doctor.mjs
board-render.mjs
board.mjs
capability-check.mjs
contention-check.mjs
context-manifest.mjs
context-preflight.mjs
criterion-check.mjs
dependency-check.mjs
dispatch-preflight.mjs
drivers/
android.sh
ios.sh
eval-lab.mjs
evidence-check.mjs
financial-constant-scan.mjs
fixtures/
broken.md
channel/
channel-v2/
31-board.md
team/
messages.jsonl
31-board.md
team/
messages.jsonl
clean.md
cycles-spent.md
dashboard/
docs/
22-impl-spec-ios.md
31-board-events.jsonl
31-board.md
team/
messages.md
events/
clean.jsonl
corrupt.jsonl
sprint.jsonl
violations.jsonl
legacy.md
not-ready.md
portfolio/
broken/
docs/
31-board-events.jsonl
notes/
docs/
31-board.md
50-test-plan.md
51-bugs.md
registry.txt
tipjar/
docs/
22-impl-spec-ios.md
31-board-events.jsonl
31-board.md
51-bugs.md
team/
messages.md
ship-blocked/
docs/
31-board.md
50-test-plan.md
51-bugs.md
ship-bugs-plain/
docs/
31-board.md
50-test-plan.md
51-bugs.md
ship-clear/
docs/
31-board.md
50-test-plan.md
51-bugs.md
ship-static/
docs/
31-board.md
50-test-plan.md
51-bugs.md
stranded.md
team/
messages.md
trace-broken/
docs/
00-founder-intent/
brief.md
00-vision.md
10-prd.md
12-flows.md
13-design-tokens.md
22-impl-spec-ios.md
31-board.md
50-test-plan.md
52-analytics.md
60-releases.md
team/
messages.md
trace-cannot/
docs/
10-prd.md
trace-clean/
docs/
00-founder-intent/
... 137 more© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic
release-manager | Versioning, signing, store upload, release notes |
/app-capabilities | Enforce role operation and path capabilities from an allowlist. |
/app-impact | Propagate changed-file review to declared downstream consumers. |
/app-risk | Route work by blast radius, model tier, approvals, and required evidence. |
/app-incident | Record operational incidents and release-health response. |
/app-manager-failover | Inspect manager leases and decide HOLD, FAILOVER, or BLOCK. |
/app-manager-harness | Compare warm and cold manager state contracts against the same scenario. |
/app-ship [version] | Parallel security + ASO + analytics readiness → release-manager. Confirms before any upload. |
/app-status | Vision, sprint goal, board doctor verdict, board summary, blockers, latest standup. |
/app-portfolio | (Many apps) Ranks every registered project by attention needed — where should the next hour go? An unreadable project is reported as unreadable, never omitted. |
/app-learn <app paths> | Mines a shipped app's conventions into the living House KB; flags conflicts for your decision. Its failure pass harvests findings into the failure corpus and flags any class that recurred after its rule shipped. |
/app-team | Lists the roster. |