npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

harnessed

v3.4.0

Published

AI coding harness package manager + composition orchestrator

Readme

harnessed

English | 中文

AI coding harness package manager + composition orchestrator Machine-executes the three-layer-stack collaboration methodology (gstack governance + GSD project manager + superpowers senior engineer + karpathy principles + mattpocock moves) as a runnable engine

npm License: Apache-2.0 Sponsor

Not affiliated with, endorsed by, or sponsored by Harness Inc. (see NOTICE)


✨ TL;DR

Assembles the best open-source Claude Code ecosystem components, weaving them into a unified workflow via opinionated composition skills; does not vendor upstream code — manifests describe install/check, and composition skills orchestrate multi-upstream collaboration.


Wait — can harnessed really go toe-to-toe with upstream giants like superpowers / gstack / GSD? Of course — we stand on the shoulders of giants. See further, Newton said. 🧐 ... (whispers) Though on closer look, more like the parrot perched on said shoulder. Eh — parrots mimic; we orchestrate. 🦜


🎯 Key Differentiators

  • Three-layer stack machine-executedgstack governance + GSD project manager + superpowers senior engineer + karpathy 4 principles + mattpocock 23 moves, 5 pillars at 100% capture
  • No vendoring of upstream — manifests describe install/check; on upstream upgrade users just re-install to get the latest version
  • Composition Skill — in-house workflow skills act as the conductor's baton, orchestrating multiple upstreams in concert. 1 super-master /auto + 4 stage masters + 18 sub-workflows + 2 standalones = 25 namespace-layered workflows, full 4-stage machine-execution (/auto one-shot across stages / /discuss /plan /task /verify single stage / 18 three-layer-stack subs / /research /retro 2 standalones)
  • L0 Discipline Substrate — global cross-stage behavior baseline (karpathy principles + output-style + language + operational + priority + protocols), applied universally
  • Package manager mindset — install dependency graph auto-resolves, doctor health check, install-base one-shot full install
  • Unified entry point — users face /discuss /plan /task /verify master slash commands without learning each upstream's terminology; sub commands explicitly invoke a single stage (e.g. /discuss-strategic runs only the strategic-layer clarification)

📦 Quick Install

npm install -g harnessed && harnessed setup

Windows PowerShell 5.x does not support && chaining — use ; or two lines (npm install -g harnessed; harnessed setup). bash / zsh / PowerShell 7+ / cmd.exe all work normally.

🤖 Or have an AI install it for you — paste this sentence to Claude Code (or any AI assistant):

Install harnessed for me following the guide at https://github.com/easyinplay/harnessed/blob/main/INSTALL-WITH-AI.md

The AI will auto-fetch the doc + run the install, handling OS / permissions / PATH / corepack edge cases — no need to copy large chunks of text.

[!TIP] 🚀 The much-loved Agent Teams and Subagent features are auto-enabled in harnessed based on the task! No need to manually configure CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMSharnessed setup writes it to ~/.claude/settings.json automatically. Pattern A full-stack three-way / Pattern C 4-specialist and other multi-agent workflows work out of the box.


🚀 Quick Start — 3 Options

In order of increasing user intervention:

🎯 Auto Mode (Recommended for newcomers / don't want to think hard)

/auto "requirement X"

# For large requirements you can explicitly stage (usually not needed — AI auto-judges and routes in;
# force it if you believe it's a large requirement):
/auto "requirement X" --staged

Don't want to think hard, or just getting started — let harnessed handle everything. Runs the full 6 stages (research conditional → discuss → plan → task → verify → retro mandatory) without stopping. AI 1-shot auto-judges requirement complexity, suggests switching to --staged mode for large requirements (stops after each stage for review); before starting prompts "Do you have a clear understanding of the requirement?" — if no → auto-runs /research multi-source investigation; ends with mandatory /retro summary. Fail-fast on failure, resume via harnessed resume.

📂 Stage Mode (Recommended for power users / want to review intermediate results)

/discuss "requirement X"          # Strategic + Phase + Subtask 3-layer clarification
/plan "requirement X"             # Architecture (conditional) + plan persistence
/task "subtask-1"                 # 4 subs serial (clarify → code → test → deliver)
/verify "phase-1"                 # 7 subs conditional verification

Want to decide which stage to start from / review intermediate outputs — 4 masters callable independently, and each master still auto-fans-out all of that stage's subs internally.

🔬 Surgical Mode (Expert mode / you know what you want)

/discuss-phase "..."        # Run only Phase-layer clarification
/plan-architecture "..."    # Run only architecture review
/verify-paranoid "..."      # Run only the Paranoid Staff Engineer review
# ... pick any of the other 18 sub-workflows

"I'm an expert, I'll decide myself" — skip the master, invoke a sub-workflow directly. Suits advanced users who know exactly which sub they need, or reuse of a single step.


📐 4-Stage Flow Diagram

graph TD
  RS([⓪ /research — pre-stage multi-source investigation, optional]):::optional
  subgraph Discuss[① Discuss — Strategic Clarification]
    DM[/discuss master/]
    DS[discuss-strategic]
    DP[discuss-phase]
    DT[discuss-subtask]
    DM --> DS & DP & DT
  end
  subgraph Plan[② Plan — Task Planning]
    PM[/plan master/]
    PA[plan-architecture]
    PP[plan-phase]
    PM --> PA & PP
  end
  subgraph Task[③ Task — Execution]
    TM[/task master/]
    TC[task-clarify]
    TCo[task-code]
    TT[task-test]
    TD[task-deliver]
    TM --> TC --> TCo --> TT --> TD
  end
  subgraph Verify[④ Verify — Verification]
    VMs[/verify master/]
    VP[verify-progress]
    VC[verify-code-review]
    VPa[verify-paranoid]
    VQ[verify-qa]
    VS[verify-security]
    VD[verify-design]
    VSi[verify-simplify]
    VM[verify-multispec]
    VMs --> VP & VC & VPa & VQ & VS & VD & VSi & VM
  end
  RT([⑤ /retro — milestone summary, optional]):::optional
  RS --> Discuss
  Discuss --> Plan --> Task --> Verify
  Verify --> RT
  classDef optional stroke-dasharray:5 5,fill:#f5f5f5,color:#666

Dashed boxes = optional standalones (/research pre-strategic investigation / /retro post-milestone summary); solid boxes = main 4-stage cadence.

25-Workflow Overview Table

| Slash cmd | Stage | Type | Capability / Upstream | Brief | |-----------|-------|------|----------------------|-------| | /auto | All | Super-master | masterOrchestrator (across 6 stages) | One-shot full 6-stage run (research conditional → discuss → plan → task → verify → retro mandatory); AI 1-shot complexity judge + understanding check + mandatory retro; --staged opt-in stage gate | | /discuss | ① Discuss | Master | masterOrchestrator | 3 subs parallel gate-eval (chain-isolation rule) | | /discuss-strategic | ① Discuss | Sub | gstack /office-hours + /plan-ceo-review + planning-with-files | Strategic layer — mandatory governance for new features / new milestones / product direction (findings.md persisted) | | /discuss-phase | ① Discuss | Sub | GSD /gsd-discuss-phase + planning-with-files | Phase layer — ≥2 open decisions / gray-area clarification (findings.md + knowledge.md persisted) | | /discuss-subtask | ① Discuss | Sub | superpowers brainstorming + /grill-with-docs | Subtask layer — ≥2 approaches / core algorithm / API contract (ephemeral short discussion, not persisted) | | /plan | ② Plan | Master | masterOrchestrator | Serial invoke of 2 subs (architecture conditional → phase always) | | /plan-architecture | ② Plan | Sub | gstack /plan-eng-review | Architecture layer — mandatory governance gate for complex architecture | | /plan-phase | ② Plan | Sub | GSD /gsd-plan-phase + planning-with-files /plan | Plan layer — persists task_plan.md + progress.md | | /task | ③ Task | Master | masterOrchestrator | Serial invoke of 4 subs per subtask (clarify → code → test → deliver) | | /task-clarify | ③ Task | Sub | superpowers brainstorming + /grill-with-docs conditional | Subtask startup clarification gate | | /task-code | ③ Task | Sub | karpathy 4 principles + /zoom-out / /improve-codebase-architecture / /diagnose conditional | Subtask coding + cross-session progress.md sync | | /task-test | ③ Task | Sub | superpowers TDD red-green-refactor + /diagnose conditional | TDD mandatory for core logic (alias mattpocock /tdd) | | /task-deliver | ③ Task | Sub | ralph-loop SDK wrapper + Agent Teams conditional | Until verbatim COMPLETE + R20.10 max_iter fallback | | /verify | ④ Verify | Master | masterOrchestrator | 7 subs conditional dispatch by scenario | | /verify-progress | ④ Verify | Sub | GSD /gsd-verify-work + /gsd-progress | Mandatory serial starting point — UAT acceptance + state sync | | /verify-code-review | ④ Verify | Sub | code-review multi-subagent fan-out | High-confidence findings in parallel | | /verify-paranoid | ④ Verify | Sub | gstack /review (Paranoid Staff Engineer) | Mandatory for critical-module pre-PR | | /verify-qa | ④ Verify | Sub | gstack /qa + playwright-cli / @playwright/test / webapp-testing | End-to-end QA (has_ui_changes conditional) | | /verify-security | ④ Verify | Sub | gstack /cso | OWASP / auth / secrets (has_auth_or_secrets conditional) | | /verify-design | ④ Verify | Sub | gstack /design-review + ui-ux-pro-max + frontend-design | Design system consistency (has_design_changes conditional) | | /verify-simplify | ④ Verify | Sub | code-simplifier | Final serial simplification | | /verify-multispec | ④ Verify | Sub | 4-specialist Agent Team Pattern C | Critical release / large refactor PR escalation (mutual SendMessage cross-examination) | | /research | Standalone | Standalone | Tavily / Exa MCP + ctx7 + GSD /gsd-discuss-phase | Multi-source investigation (Stage ① alternate) | | /retro | Standalone | Standalone | gstack /retro + planning-with-files RETROSPECTIVE.md | Project / milestone close-out summary |

Master orchestrator auto gate-routes to the right sub (chain-isolation rule — non-firing subs are transparently declared skipped). Direct sub invocation also bypasses the master to run a single stage, e.g. /discuss-strategic "new feature X".


⚡ Usage Flow

4-stage three-layer-stack methodology — recommended driving via the 4 master orchestrators in series:

/discuss  →  /plan  →  /task  →  /verify
   ①         ②        ③         ④

| Stage | Master | Main sub-workflows | Upstream collaboration | | ---- | ---- | ---- | ---- | | ① Discuss | /discuss | strategic / phase / subtask (3 in parallel) | gstack /office-hours + GSD /gsd-discuss-phase + superpowers brainstorming | | ② Plan | /plan | architecture (conditional) → phase | gstack /plan-eng-review + GSD /gsd-plan-phase + planning-with-files | | ③ Task | /task | clarify → code → test → deliver (4 serial per subtask) | karpathy principles + mattpocock moves + superpowers TDD + ralph-loop | | ④ Verify | /verify | progress → 5 parallel conditional → simplify (+ multispec critical) | GSD /gsd-verify-work + code-review + gstack /review / /qa / /cso / /design-review + code-simplifier |

Practical example:

# 1. Install workflow upstreams (one line installs gstack + GSD + superpowers + planning-with-files)
harnessed setup

# 2. Run the 4-stage cadence inside Claude Code
/discuss "new feature X"          # Strategic + Phase + Subtask 3-layer clarification
/plan "new feature X"             # Architecture (conditional) + plan (task graph persisted)
/task "subtask-1: API contract"   # 4 subs serial per subtask
/verify "phase-1"                 # 7 subs conditional

# 3. Resume after interruption (any time)
harnessed resume

You can also invoke subs directly to bypass the master and run just one layer, e.g. /verify-paranoid runs only the Paranoid Staff Engineer review.

📊 Detailed mermaid + full stage walkthroughs: docs/WORKFLOW.md


🗂️ Architecture (4-stage namespace-layered)

1. Directory Structure

harnessed/
├── manifests/                  # L1: upstream description layer (NOT vendored)
├── workflows/                  # L6: composition skills (4-stage conductor's baton)
│   ├── discuss/                # Stage ① 3 layers (strategic + phase + subtask)
│   │   ├── auto/               # /discuss master gate-route
│   │   ├── strategic/          # /discuss-strategic (gstack /office-hours + /plan-ceo-review)
│   │   ├── phase/              # /discuss-phase (GSD /gsd-discuss-phase)
│   │   └── subtask/            # /discuss-subtask (superpowers brainstorming)
│   ├── plan/                   # Stage ② (architecture + phase task graph)
│   ├── task/                   # Stage ③ (clarify + code + test + deliver)
│   ├── verify/                 # Stage ④ (progress + code-review + paranoid + qa + cso + design + simplify + multispec)
│   ├── research/               # standalone Stage ① alternate
│   ├── retro/                  # standalone post-④ milestone close
│   ├── capabilities.yaml       # L5a: ~70 entries, 7 categories SoT
│   ├── defaults.yaml           # ralph_max_iterations per workflow phase
│   ├── judgments/              # L5a: three-layer-stack criteria + parallelism + tdd + fallback + rules-routing
│   │   ├── strategic-gate.yaml
│   │   ├── phase-gate.yaml
│   │   ├── subtask-gate.yaml
│   │   ├── parallelism-gate.yaml         # L5b execution mechanism routing
│   │   ├── tdd-gate.yaml
│   │   ├── fallback.yaml                 # 3 rules: skip_with_transparency + override + chain_isolation
│   │   ├── web-design-routing.yaml       # UI design tool routing
│   │   ├── web-testing-routing.yaml      # E2E / browser testing tool routing
│   │   ├── web-search-routing.yaml       # Web search / doc fetch routing
│   │   └── stage-routing.yaml            # master orchestrator sub-stage routing
│   └── disciplines/            # L0: global cross-stage behavior baseline
│       ├── karpathy.yaml       # 4 principles + ≤200L
│       ├── output-style.yaml   # BLUF + no-emoji + no-em-dash
│       ├── language.yaml       # zh-Hans default + English preserve
│       ├── operational.yaml    # biome preempt + A7 + commit safety
│       ├── priority.yaml       # skill conflict arbitration
│       └── protocols.yaml      # cc-handoff design doc self-contained
├── routing/                    # L4: routing engine SSOT (decision_rules.yaml)
├── schemas/                    # L3: JSON Schema (IDE / CI consume)
├── src/                        # L4: TS engine (workflow + routing + cli + installers + checkpoint + audit + state)
├── tests/                      # vitest unit + integration + dogfood (R8.1 dogfood-first)
├── scripts/                    # CI gate (check-workflow-schema, transparency-verdict, state-archive)
├── .planning/                  # project memory (STATE + ROADMAP + REQUIREMENTS + per-phase + milestones)
└── docs/adr/                   # architecture decision records

2. Logical Layering (8 layers)

┌────────────────────────────────────────────────────────────┐
│ L7 User-facing slash cmd + harnessed CLI                    │
│   /discuss /plan /task /verify (master) + 18 sub + /research /retro + /auto super-master
│   + direct gstack invoke (30+ optional): /office-hours /review /qa /...
├────────────────────────────────────────────────────────────┤
│ L6 Workflow orchestration (workflows/<stage>/<sub>/)         │
├────────────────────────────────────────────────────────────┤
│ L5b Execution Mechanism (orthogonal): subagent / Agent Teams │
│   / main session + ralph-loop wrapper                       │
│   parallelism-gate.yaml: default subagent → escalate 5 triggers │
│   Pattern A full-stack three-way / B opposing hypotheses / C multi-dim review │
├────────────────────────────────────────────────────────────┤
│ L5a Capability + Judgment + Defaults SoT                    │
│   capabilities.yaml (7 categories) + judgments/ (10 files) + │
│   defaults.yaml                                              │
├────────────────────────────────────────────────────────────┤
│ L4  Runtime engine (workflow / routing / handlers)           │
├────────────────────────────────────────────────────────────┤
│ L3  TypeBox schema + CI gate                                 │
├────────────────────────────────────────────────────────────┤
│ L2  Installer + Manifest engine                              │
├────────────────────────────────────────────────────────────┤
│ L1  Upstream components (NOT vendored)                       │
├────────────────────────────────────────────────────────────┤
│ L0  Discipline Substrate (applies globally)                  │
│   karpathy principles + output-style + language + operational + │
│   priority + protocols (applied universally to L1-L7)       │
└────────────────────────────────────────────────────────────┘

3. Cross-cutting Capabilities (capabilities.yaml — 7 categories, ~83 entries)

behavioral (6):       karpathy-guidelines + output-style + language + operational + priority + protocols
tool-slash-cmd (~60): gstack 30+ optional + gsd 10+ + mattpocock 12 high-frequency + etc.
tool-mcp (3):         chrome-devtools-mcp / tavily-mcp / exa-mcp
tool-cli (2):         ctx7 / gws
tool-plugin (2):      planning-with-files / @playwright/test
tool-bundled (3):     ralph-loop / webapp-testing / playwright-cli
agent-platform (3):   agent-teams-create / send-message / shutdown

4. Data Flow Example (user invokes /discuss "new feature X")

[L7] User invokes /discuss "new feature X"
  ↓
[L6] workflows/discuss/auto/workflow.yaml master orchestrator
  ↓
[L5a] judgments.strategic-gate.fires + phase-gate.fires + subtask-gate.fires (3-way parallel eval)
  ↓
[L4] judgmentResolver.ts (4-level ref split) + exprBuilder.ts (expr-eval evaluate)
  ↓
[L0] discipline.priority-hierarchy arbitrates tool conflicts / output-style formats output
  ↓
[fires=true sub] → invoke sub-workflow (/discuss-strategic / /discuss-phase / /discuss-subtask)
  ↓ for each sub:
      ├─ behavioral_layer: karpathy-guidelines (always-on)
      ├─ tools_available: planning-with-files / ctx7 / mattpocock by-condition
      ├─ parallelism: judgments.parallelism-gate.<route>.fires (L5b mechanism)
      └─ phase invocations execute via capability template interpolation
  ↓
[fallback.yaml chain-isolation] 3 layers judged independently, not serially dependent
[Skip transparency declaration] non-firing subs → "⚠️ Skipped <sub> because <reason>"
  ↓
planning-with-files /plan (cross-cutting tool) → write artifacts to .planning/<phase-id>/
  ↓
[L4] state.ts writeCurrentWorkflow (proper-lockfile) + audit.append (12-field JSONL)

5. Decision Routing Matrix (rules-based, codified in judgments + capabilities)

| Scenario | Default → Escalate | |------|---------------------| | Parallelism mechanism | subagent → Agent Teams Pattern A/B/C (5 triggers) | | UI design primary plan | ui-ux-pro-max → frontend-design (user explicitly asks for style) | | E2E browser exploration | playwright-cli (one-line Bash, token-efficient) | | E2E commit-able TS | @playwright/test default | | E2E Python backend linkage | webapp-testing | | Performance / a11y / memory diagnostics | chrome-devtools-mcp | | Web search (keyword) | Tavily MCP default | | Web search (descriptive / academic) | Exa MCP | | Library API docs | ctx7 CLI | | GitHub URL | gh CLI | | Single URL fetch | WebFetch built-in | | Gmail / Drive / Calendar | gws CLI | | Architecture review (complex) | gstack /plan-eng-review | | TDD mandatory (core algorithm) | superpowers TDD OR mattpocock /tdd | | Critical module PR | gstack /review | | Large refactor PR multi-dim review | 4-specialist Agent Team Pattern C | | Cross-session hand-off | discipline.protocols self-contained design doc | | /auto complexity for large requirements | AI 1-shot judge → auto-suggest --staged (n abort suggests manual /discuss) | | /auto requirement understanding | prompt before start → n auto-adds /research multi-source investigation |


🛠️ Operational Commands

These are harnessed's own maintenance commands (setup / health check / backup-rollback / state recovery, etc.). For day-to-day feature development just use the slash commands above — you usually don't need these.

CLI Commands

| Command | Description | | ---- | ---- | | harnessed setup | One-time setup; installs workflow skills to ~/.claude/skills/ + MCP to ~/.claude.json | | harnessed resume | Resume from the most recent checkpoint after a session interruption | | harnessed status | Current phase + lock holder | | harnessed doctor | 8-check health check (Node / MCP / jq / Win bash / routing / token budget, etc.) | | harnessed install <name> | Install an upstream manifest | | harnessed uninstall <name> | Reverse uninstall | | harnessed backup | Snapshot backup management | | harnessed rollback <timestamp> | One-line rollback (EOL preserve + sha1 verify) | | harnessed gc | Clean up expired backups | | harnessed audit-log | Routing transparency log query (supports --filter jq expression) |

Flags

All commands apply (immediate write) by default — no flag needed. Advanced users can add --dry-run to preview.

| Flag | Description | | ---- | ---- | | --dry-run | Preview without writing to disk (advanced opt-in) | | --non-interactive | CI / scripted scenarios | | --system | Allow L4 global install (otherwise downgrade to L1 npx ephemeral) | | --yes | Skip interactive confirm on uninstall | | --full-diff | Expand diffs folded above 200 lines | | --no-color | Force nocolor (even on TTY) |


❓ FAQ

Yes, but the user experience = one command:

harnessed setup  # Auto-installs gstack + GSD + superpowers + planning-with-files; 25 workflow skills land in ~/.claude/skills/ + Agent Teams env var auto-written to ~/.claude.json

Think brew install <formula> pulling the full dependency set — you don't need to brew install each dependency separately.

4 reasons:

  1. Differentiation philosophy — harnessed is the "assembly-ist package manager" counterposed to the "all-in-one self-built" camp. Vendoring = losing the wedge → becoming yet another plugin pack
  2. License + attribution nightmare — vendoring 4-5 actively maintained upstreams = a complex license patchwork
  3. Upstream upgrades flip direction — current manifest description lets users re-install for the latest version on upstream upgrade; vendoring forces manual code sync and falls perpetually behind
  4. Bus factor 1 — a single maintainer keeping 4-5 vendored upstreams in sync = accelerated burnout

No. They are different stages of the three-layer stack:

| Stage | Upstream | Responsibility | | ---- | ---- | ---- | | Governance | gstack | Multi-role decision gates (CEO / EM / Designer / Paranoid Engineer) | | Brainstorming | superpowers | Subtask design clarification, alternative comparison | | Orchestration | GSD | High-level phase task graph + dependency analysis | | Persistence | planning-with-files | Persists task_plan.md / progress.md / findings.md |

/discuss /plan /task /verify — the 4 masters string the 4 stages together; each master internally delegates to its sub. Each stage does a different thing and feeds the next. No merging.

Depends on the pause field in workflows/<name>/SKILL.md frontmatter:

  • pause: human_review → blocks waiting for user approval (governance gate / final lock, e.g. /discuss-strategic gstack /office-hours + /plan-architecture /plan-eng-review lock-in gate)
  • No pause → auto-chains to the next phase

Each phase output is written to .harnessed/checkpoints/; after a session interruption harnessed resume continues from the latest checkpoint.

A hybrid:

  • npx harnessed@latest setup runs the Node.js CLI (bin/harnessed)
  • setup installs workflow skills (markdown) into ~/.claude/skills/, loaded by the Claude Code runtime
  • /discuss / /plan / /task / /verify etc. are slash commands inside CC that trigger skill execution
  • The CLI and the CC skills share the .harnessed/checkpoints/ state directory

License

Apache-2.0 — see NOTICE (includes Harness Inc. trademark disclaimer)

Support development: Sponsor