rajconnects

36 mods across 2 repositories, 2 stars between them.

founder-stack

01

rajconnects/founder-stack

Plugin Claude Code

Engineering workflow for non-technical founders building real products with Claude Code.

2 1mo ago A tokens not measured original MIT

rajconnects/founder-stack

Instructions file

Instructions for rajconnects/founder-stack, covering claude.md — founder stack framework repo, what this repo is, editing rules, open work and source repo.

2 1mo ago A 363 tokens original MIT

docs-auditor

03

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /docs-gate, or when the mission tick procedure dispatches you in its Completion step before writing memory. Catches CHANGELOG/README/playbook drift against the actual repo state — broken file references, dead slash-command refs, unused project.json keys, and CHANGELOG entries that…

2 1mo ago A 86 tokens original MIT

feature-worker

04

rajconnects/founder-stack

Agent

Use PROACTIVELY when the mission tick procedure dispatches a feature for implementation. You read one feature's contract, implement against it, run local checks (lint/tsc/tests), and emit a structured handoff. One feature per dispatch, clean context each time.

2 1mo ago C 58 tokens original MIT

memory-broker

05

rajconnects/founder-stack

Agent

Use PROACTIVELY when the mission procedures (new-mission, tick) need to read or write cross-mission memory. The single seam for memory I/O — every other agent calls this one rather than touching memory/ directly. Routes to local files by default, or Mem0 over HTTP (via .claude/scripts/mem0-call.sh) when…

2 1mo ago A 90 tokens original MIT

scrutiny-validator

06

rajconnects/founder-stack

Agent

Use PROACTIVELY when the mission tick procedure dispatches scrutiny on a completed worker handoff. Adversarial re-check of the worker's static-correctness claims — re-runs tests, re-runs type-check, and independently judges contract coverage against the actual code. Emits a single PASS/FAIL verdict with specific gaps.…

2 1mo ago A 97 tokens original MIT

user-flow-tester

07

rajconnects/founder-stack

Agent

Use PROACTIVELY when the mission tick procedure dispatches user-flow testing on a feature whose scrutiny has PASSed and whose contract declares user flows. You drive a real browser via Playwright MCP, execute each flow against the preview URL, and emit a PASS/FAIL verdict with screenshots and console capture.

2 1mo ago A 66 tokens original MIT

docs-gate

08

rajconnects/founder-stack

Command

Audit framework docs for drift — broken file refs, dead command refs, unused project.json keys, and CHANGELOG-vs-diff overclaim/underclaim. Dispatches docs-auditor.

2 1mo ago A 39 tokens original MIT

mission-abort

09

rajconnects/founder-stack

Command

Terminate a mission. Sets status to aborted, writes a final log entry, preserves the mission directory for audit. Does not roll back code changes.

2 1mo ago A 29 tokens original MIT

mission-resume

10

rajconnects/founder-stack

Command

Resume a paused or blocked mission. Re-syncs state, updates the heartbeat, and tells you how to re-enter /loop. Used after context-overflow auto-exit, after a session crash, or after a human cleared a blocking issue.

2 1mo ago A 49 tokens original MIT

mission-status

11

rajconnects/founder-stack

Command

Show the current state of a mission — status, current step, verdicts so far, recent log entries. Read-only.

2 1mo ago A 25 tokens original MIT

mission-tick

12

rajconnects/founder-stack

Command

One iteration of the autonomous mission loop. Invoked as /loop /mission-tick to start, then re-fired by /loop dynamic mode on each ScheduleWakeup (local pace), or fired by /schedule (cron pace).

2 1mo ago A 49 tokens original MIT

mission

13

rajconnects/founder-stack

Command

Start a new autonomous mission. Scopes the goal, writes a validation contract for your approval, then (after explicit /loop or cron start) dispatches workers and validators on a tick loop until the mission completes or blocks. Designed for overnight runs.

2 1mo ago A 50 tokens original MIT

deploy-verifier

14

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /deploy-gate, or immediately after a deployment completes and needs smoke verification before being marked green. Runs health checks, smoke tests, and log queries against the deployed environment. Does not deploy.

2 1mo ago A 52 tokens original MIT

design-auditor

15

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /design-gate, or when frontend code has been written and needs verification against the design spec + tokens + Figma before being declared done. Returns a structured pass/fail with a gap list. Now includes visual comparison against Figma screenshots.

2 1mo ago A 63 tokens original MIT

frontend-engineer

16

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /frontend-build after /ux-mockup approval. Produces a design-context-aware implementation brief covering (a) component composition, (b) performance optimization (capped at 3 recommendations), and (c) a scaffold body the calling command will write to disk. Does not write files …

2 1mo ago A 103 tokens original MIT

schema-analyst

17

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /schema-gate. Verifies live-DB-dependent risks on a pending migration — RLS coverage, table size for index impact, forward-compat hooks. Static patterns (drops, renames, truncates) are caught earlier by schema-static-scan.sh; this agent assumes those have passed.

2 1mo ago A 74 tokens original MIT

spec-translator

18

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /spec-intake or hands you a markdown spec file (e.g., a build plan, frontend flow spec, component spec, or system design). Parses the spec into a structured execution plan with file paths, dependency order, and gate checkpoints.

2 1mo ago A 62 tokens original MIT

test-author

19

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /test-gate, or when about to start implementing a feature that lacks tests. Writes failing tests FIRST that establish the contract from the spec. Does not implement the feature.

2 1mo ago A 47 tokens original MIT

ux-mockup-designer

20

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /ux-mockup after wireframes have been produced. Refines existing wireframe frames into high-fidelity Figma frames suitable for engineering handoff. Does not extend componentsspec or flowspec (those are owned by ux-wireframer). Does not auto-approve — the human…

2 1mo ago A 90 tokens original MIT

ux-wireframer

21

rajconnects/founder-stack

Agent

Use PROACTIVELY when the user invokes /ux-wireframe, or when a frontend spec lands without component contracts and design exploration is about to start. Produces low-fidelity design artifacts — component contracts in componentsspec, flow entries in flowspec, and optional rough Figma frames clearly labelled as…

2 1mo ago A 104 tokens original MIT

architecture-review

22

rajconnects/founder-stack

Command

Post-phase architectural review. Surfaces deepening opportunities (shallow modules, leaky seams, tightly-coupled clusters), informed by the project's glossary and prior decision records. Adapted from mattpocock/skills/improve-codebase-architecture.

2 1mo ago A 51 tokens original MIT

deploy-gate

23

rajconnects/founder-stack

Command

Post-deploy smoke verification — health check, Playwright smoke, log scan. Does not deploy or roll back.

2 1mo ago A 23 tokens original MIT

design-gate

24

rajconnects/founder-stack

Command

Verify implemented frontend code against design spec, tokens, component contract, and Figma. Returns pass/fail with a gap list. Pass --strict to enforce the .design-approved- marker as a hard prerequisite (otherwise it's a soft warning).

2 1mo ago A 51 tokens original MIT