robconery

102 mods across 4 repositories, 18 stars between them.

robconery/cassini-workshop

Skill Claude CodeCodex

Idiomatic TypeScript conventions and best practices: strict compiler settings, type-level modeling (discriminated unions, branded/nominal types, as const/satisfies, exhaustiveness), unknown over any, immutability, error handling with a Result type, null/undefined hygiene, async/promise rules, module and naming…

1 2mo ago A 168 tokens original MIT

user-stories

74

robconery/cassini-workshop

Skill Claude CodeCodex

Write, split, and refine agile/scrum user stories and acceptance criteria. Produces /docs/STORIES.md as the canonical backlog, formatted to feed directly into the bdd-specs skill (Story → Feature, Given/When/Then acceptance criteria → Scenario/Specification). Use this whenever the user wants to write a user story…

1 2mo ago A 147 tokens original MIT

builder

76

robconery/kolea

Agent Claude Code

Implements a single PLAN.md task in TypeScript (Next.js or Bun). Builds and self-tests; never commits unless told. Dispatched by /build-loop.

1 2d ago A 35 tokens copy · 100% MIT

reviewer

77

robconery/kolea

Agent Claude Code

Read-only code + security gate for a single built task (TypeScript, Next.js or Bun). Returns PASS or FAIL with findings. Dispatched by /build-loop.

1 2d ago A 37 tokens copy · 100% MIT

build-loop

78

robconery/kolea

Command Claude Code

Drive a PLAN.md to completion task-by-task — builder builds, reviewer gates, commit only on pass.

1 2d ago A 21 tokens copy · 100% MIT

design

79

robconery/kolea

Command Claude Code

Interview the solution — architecture, schema, platform. Owns ARCHITECTURE.md + SPEC.md.

1 2d ago A 21 tokens copy · 100% MIT

document

80

robconery/kolea

Command Claude Code

Reconcile docs with reality — README, ARCHITECTURE prose, MEMORY log. Run anytime.

1 2d ago A 20 tokens copy · 100% MIT

explore

81

robconery/kolea

Command Claude Code

Interview the idea — problem, who, why, scope. Owns docs/PROJECT.md.

1 2d ago A 19 tokens copy · 100% MIT

git-commit

82

robconery/kolea

Command Claude Code

Stage and commit current changes using Conventional Commits, branch-or-trunk by size. Uses the github skill.

1 2d ago A 24 tokens copy · 100% MIT

git-issue

83

robconery/kolea

Command Claude Code

Open a GitHub issue with a clear, detailed body via gh issue create. Uses the github skill.

1 2d ago A 24 tokens copy · 100% MIT

git-merge

84

robconery/kolea

Command Claude Code

Merge the current branch into main safely — commit-check, remote sync, confirm, merge.

1 2d ago A 18 tokens copy · 100% MIT

git-pr

85

robconery/kolea

Command Claude Code

Open a pull request with a clear summary, verification plan, and risk note via gh pr create. Uses the github skill.

1 2d ago A 28 tokens copy · 100% MIT

git-remote

86

robconery/kolea

Command Claude Code

Create the GitHub remote for this project and make it look sharp — name, license, real README, contributing, security, issue templates.

1 2d ago A 28 tokens copy · 100% MIT

init

87

robconery/kolea

Command Claude Code

Scaffold the project files I like — CLAUDE.md and the /docs skeleton.

1 2d ago A 18 tokens copy · 100% MIT

plan

88

robconery/kolea

Command Claude Code

Slice SPEC into stories and an ordered task DAG. Owns STORIES.md + PLAN.md.

1 2d ago A 18 tokens copy · 100% MIT

quick-fix

89

robconery/kolea

Command Claude Code

Make a small, obvious fix directly on the current branch. No sprint, no PLAN, no stories.

1 2d ago A 21 tokens copy · 100% MIT

spec

90

robconery/kolea

Command Claude Code

Generate executable BDD specs from STORIES.md via the bdd-specs skill. Stories-first, idempotent, pending by default.

1 2d ago C 27 tokens copy · 100% MIT

agent-teams

91

robconery/kolea

Skill Claude CodeCodex

How to orchestrate Claude Code's experimental Agent Teams — spawning teammates as separate sessions, delegating work to them, and waiting for results instead of doing the work yourself in the main thread. Use whenever a task should run as parallel/independent workstreams: multi-file refactors, reviewing or auditing…

1 2d ago A 161 tokens copy · 100% MIT

bdd-specs

92

robconery/kolea

Skill Claude CodeCodex

Behavior-driven design: write executable specifications BEFORE any implementation code. Reads /docs/PLAN.md for the build plan and /docs/STORIES.md for user stories, and stops to ask for either if it is missing. Generates TypeScript spec files in nested blocks — Feature > Scenario > Specification — where each Scenario…

1 2d ago A 183 tokens copy · 100% MIT

design-principles

93

robconery/kolea

Skill Claude CodeCodex

General object-oriented design principles for TypeScript projects that are NOT part of SOLID or the Gang of Four patterns — coupling and cohesion (incl. connascence), DRY, YAGNI, KISS, separation of concerns, encapsulation / information hiding, Tell Don't Ask, Law of Demeter, composition over inheritance…

1 2d ago A 143 tokens copy · 100% MIT

github

94

robconery/kolea

Skill Claude CodeCodex

GitHub workflow conventions: writing clear conventional commits, opening detailed issues and PRs via the gh CLI, and choosing trunk-based vs short-lived branch flow based on the size of the change. Use whenever the user wants to commit, branch, push, open an issue, open a PR, or asks how to structure any of those.…

1 2d ago A 83 tokens copy · 100% MIT

gof-patterns

95

robconery/kolea

Skill Claude CodeCodex

Gang of Four design patterns reference for TypeScript projects. Use when choosing or implementing a design pattern, refactoring toward a known pattern, reviewing code for pattern misuse, or answering "which pattern fits here" questions. Covers all 23 creational, structural, and behavioral patterns with idiomatic…

1 2d ago A 79 tokens copy · 100% MIT

postgres-dba

96

robconery/kolea

Skill Claude CodeCodex

Opinionated PostgreSQL schema and database design conventions: snakecase naming, id serial primary key surrogate keys, compound primary keys for many-to-many junctions, NOT NULL foreign keys by default (nullable only with an explicit override), enums instead of excessive lookup tables, STORED generated columns for…

1 2d ago A 162 tokens copy · 100% MIT