# Tierward

> Governed AI coding on Claude Code: tiered pipelines, audit skills, MCP server. Claude generates, your team decides.

- **Type:** MCP server
- **Install:** `agentstack add mcp-marcoguillermaz-tierward`
- **Verified:** Pending review
- **Seller:** [marcoguillermaz](https://agentstack.voostack.com/s/marcoguillermaz)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [marcoguillermaz](https://github.com/marcoguillermaz)
- **Source:** https://github.com/marcoguillermaz/Tierward
- **Website:** https://www.npmjs.com/package/tierward

## Install

```sh
agentstack add mcp-marcoguillermaz-tierward
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Tierward

[](https://www.npmjs.com/package/tierward)
[](LICENSE)
[](https://nodejs.org)
[](https://github.com/marcoguillermaz/Tierward/actions/workflows/ci.yml)
[](https://securityscorecards.dev/viewer/?uri=github.com/marcoguillermaz/Tierward)

> **Claude generates. You or your team decides.**
> A development framework that gives Claude Code a governed, phased process, so you build real software consistently and reviewably, from day one.
> MCP-native: read Tierward governance state from Claude Desktop, ChatGPT, Cursor, VS Code.

Claude Code is fast. The problem it creates isn't in the code: it's in the review. When AI writes everything autonomously, you end up approving diffs you don't fully understand, catching regressions two blocks later, and losing the thread of what the system actually does.

**Tierward** sits between Claude and done. Teams adopt it tier by tier, from a zero-process discovery setup up to a fully governed pipeline: explicit STOP gates before implementation, audit skills that surface issues before they reach production, and a Stop hook that mechanically prevents Claude from declaring done until your tests pass. Start at Tier 0 and move up when you need more structure.

Since v1.17.0, Tierward ships an MCP server alongside the CLI. Any MCP-aware client can read your project's doctor report, team-settings policy, last arch-audit, and skill inventory without running the Tierward CLI. See [MCP server](#mcp-server).

---

## Philosophy

One thing drives Tierward: Claude Code doesn't become harder to work with because it gets less capable. It becomes harder to work with because autonomous decisions accumulate faster than anyone can review them. The pipeline enforces a review contract: scope confirmed before code, hypothesis written before a fix, tests passing before done. It doesn't slow down work that doesn't need that structure.

The tier system exists because process has a cost. A solo bugfix shouldn't pay the overhead of a team feature workflow. Two pipelines cover the range: **Fast Lane** (4 steps, scope-confirm) for quick fixes, **Full** (14 phases, 4 review gates) for team features. Both enforce the same contract: Claude works phase by phase, your team approves each step. Start at the tier that fits your current risk and add more as the stakes rise.

Built for the people who carry the result, product managers and developers alike, so the decisions stay with them, not the model.

### Claude Code-first, by design

Tierward works exclusively with Claude Code. No Cursor support, no Copilot layer, no multi-tool abstractions. That's intentional.

The enforcement mechanisms that make Tierward useful are Claude Code primitives: a Stop hook is a hard OS-level block in `settings.json`; a STOP gate lives in `pipeline.md`, a rules file Claude reads at session start; audit skills are structured programs that run inside the Claude Code agent loop. These aren't portable concepts wrapped in an abstraction layer. They're direct calls into Claude Code's architecture.

Supporting multiple tools would mean replacing these with lowest-common-denominator abstractions that strip out the enforcement layer. The value of Tierward is precisely that enforcement: the Stop hook doesn't ask Claude to run tests, it prevents Claude from completing a task until they pass.

If your team uses other AI coding tools alongside Claude Code, Tierward governs only the Claude Code sessions. The underlying principles (tests before done, requirements before code, audit before deploy) aren't Claude-specific, but the implementation is, by choice.

---

## How it works

**1. Scaffold once.** `npx tierward init` detects your project type and scaffolds a pipeline, audit skills, security rules, and governance files matched to your stack and team size. Setup takes under two minutes.

**2. Work inside the pipeline.** The pipeline is a rules file Claude reads at session start. For Tier M: dependency scan before implementation, STOP gate after requirements, `/simplify` after writing code. You get the structure without managing it manually.

**3. Run audit skills on demand.** Skills like `/security-audit`, `/arch-audit`, and `/systematic-debugging` are multi-step programs that run inside Claude Code. Call them when you need them: before a deploy, when a test fails, after a migration wave. Each produces a structured report.

**4. You or your team decides.** STOP gates pause Claude to present its plan, and a commit gate blocks `git commit` until you have approved. CODEOWNERS guards `.claude/`. A Stop hook also verifies your tests pass before a task can close. No autonomous merges.

---

## Quick Start

```bash
npx tierward init
```

The wizard detects your project state and routes setup. Three paths available:

| Path                   | Use when                                                         |
| ---------------------- | ---------------------------------------------------------------- |
| **Existing project**   | Add structure to a project that already has code                 |
| **New project**        | Starting from scratch                                            |
| **From existing docs** | Share repos or docs - Claude reads them and populates everything |

After init, open Claude Code and start working. The scaffold is active immediately.

### Context Builder (v1.27.0)

Run `context` before `init` if you want the scaffold to reproduce consistently, with a written record of what you asked for:

```bash
npx tierward context                       # produces CONTEXT.md
npx tierward init                          # reads CONTEXT.md, scaffolds with no further prompts
npx tierward context --all                 # one-shot: context then init
npx tierward context --from-yaml file.md   # bypass interview, validate + copy
npx tierward validate-context              # CI gate: exit 0/1 on schema check
```

`CONTEXT.md` is a schema-validated project context file. Greenfield runs a PM-friendly interview. Existing repos go through three-phase inference: algorithmic detection, LLM extraction, hybrid PM review. The first question routes you to a PM or developer flow. The developer flow reuses the technical questions from the legacy `init` wizards (projectName, stack, commands, scaffold options) and auto-derives `tier.rationale` from team size and work scope, so devs aren't asked to write PM rationale prose.

As of v1.27.0, the schema covers all four pipeline tiers: tier 0 (Discovery) and tier S (Fast Lane) for solo or bugfix work, tier M (Standard) for feature-block work with feature flags (`has_api`, `has_database`, `has_frontend`, `has_design_system`, `has_prd`), and tier L (Full) for complex domain projects.

---

## What it does

One contract across four tiers. Solo bugfix or fully governed team pipeline, the rule is the same: Claude proposes, your team approves.

### Tiered pipelines matched to risk

| Tier              | Pipeline                | Best for                              |
| ----------------- | ----------------------- | ------------------------------------- |
| **0 - Discovery** | Stop hook only          | First exploration - zero process      |
| **S - Fast Lane** | 4 steps, scope-confirm  | Single dev, low risk, quick fixes     |
| **M - Standard**  | 13 phases, 3 STOP gates | Feature blocks, 1-2 collaborators     |
| **L - Full**      | 14 phases, 4 STOP gates | Team projects, complex domain changes |

Start at Tier 0. Move up when you need more structure: `npx tierward upgrade --tier=m`

### 26 audit skills

Executable multi-step programs that run inside Claude Code, not prompt instructions. Structured audit workflows with model routing (haiku for mechanical checks, sonnet for analysis).

| Skill                   | Tiers | Purpose                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ----------------------- | ----- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `/arch-audit`           | S M L | Governance files vs Anthropic docs. Auto-fixes deprecations.                                                                                                                                                                                                                                                                                                                                                                                    |
| `/security-audit`       | S M L | Auth, input validation, RLS, CVE scan. 3-path: WEB / NATIVE / HYBRID. **MCP-aware (v1.20+)**: Step 3c queries `mcp-nvd` server for live CVE data with local audit fallback.                                                                                                                                                                                                                                                                     |
| `/perf-audit`           | S M L | Bundle size, serial awaits, query efficiency. 8-stack patterns.                                                                                                                                                                                                                                                                                                                                                                                 |
| `/skill-dev`            | S M L | Coupling, duplication, dead code, debt-density. **Step 3b (v1.22+)**: hotspot priority via churn × debt; top-10 ranked by 4-quadrant matrix using `git log --since="6.months.ago"`.                                                                                                                                                                                                                                                            |
| `/simplify`             | S M L | Early returns, nesting, dead code. Applies changes directly.                                                                                                                                                                                                                                                                                                                                                                                    |
| `/commit`               | S M L | Conventional Commits - auto-detects type, scope, description.                                                                                                                                                                                                                                                                                                                                                                                   |
| `/skill-security`       | S M L | Security scan for Claude Code skills using SkillSpector: prompt injection, data exfiltration, MCP tool poisoning, supply chain, taint tracking. 64-pattern vulnerability scanner.                                                                                                                                                                                                                                                               |
| `/systematic-debugging` | S M L | Root-cause investigation before any fix: reproduce consistently, write the hypothesis, verify against evidence, then fix the root cause, not the symptom. STOP gate between hypothesis and fix.                                                                                                                                                                                                                                                 |
| `/api-design`           | M L   | URL naming, HTTP verbs, response envelope, pagination.                                                                                                                                                                                                                                                                                                                                                                                          |
| `/skill-db`             | M L   | Schema normalization, indexes, N+1 queries, RLS.                                                                                                                                                                                                                                                                                                                                                                                                |
| `/migration-audit`      | M L   | Stack-aware migration safety: data loss, rollback, lock-heavy DDL. Prisma/Drizzle/Supabase/SQL.                                                                                                                                                                                                                                                                                                                                                 |
| `/visual-audit`         | M L   | Typography, spacing, hierarchy, dark-mode, micro-polish.                                                                                                                                                                                                                                                                                                                                                                                        |
| `/ux-audit`             | M L   | ISO 9241-11, Nielsen heuristics, user confidence.                                                                                                                                                                                                                                                                                                                                                                                               |
| `/responsive-audit`     | M L   | Layout at 320-1024px, tap targets, WCAG.                                                                                                                                                                                                                                                                                                                                                                                                        |
| `/ui-audit`             | M L   | Design token compliance, component adoption, empty states.                                                                                                                                                                                                                                                                                                                                                                                      |
| `/accessibility-audit`  | M L   | axe-core WCAG 2.2, APCA contrast, static a11y (aria, tabindex, focus, labels).

…

## Source & license

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

- **Author:** [marcoguillermaz](https://github.com/marcoguillermaz)
- **Source:** [marcoguillermaz/Tierward](https://github.com/marcoguillermaz/Tierward)
- **License:** MIT
- **Homepage:** https://www.npmjs.com/package/tierward

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** yes

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: flagged — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-marcoguillermaz-tierward
- Seller: https://agentstack.voostack.com/s/marcoguillermaz
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
