← All creators

voidcorp-core

Organization

A development-doctrine operating system for coding agents. One doctrine, compiled to Claude Code and Codex and enforced by hooks rather than vibes. Install on any project with `npx voidharness init` — free, account-free, MIT.

42 indexed · 0 Featured · 0 stars · avg score 76
Prolific

Categories

Indexed Skills (42)

Data & Documents Listed

eas-build-profile

Configure eas.json profiles (development, preview, production) with the right env, bundle ID, signing, distribution. The 3-profile structure that fits 95% of Expo apps.

0 Updated today
voidcorp-core
Code & Development Listed

expo-config-plugins

Add native functionality to an Expo app via config plugins, never by ejecting. Pick existing Expo modules first, write a custom plugin only when none fits. Document everything in app.config.ts.

0 Updated today
voidcorp-core
AI & Automation Listed

expo-router-pattern

File-based routing in Expo via expo-router — layouts, tabs, modals, deep links. Mirrors Next.js App Router so monorepos can share mental model. Stack-aware navigation patterns.

0 Updated today
voidcorp-core
Code & Development Listed

ota-update-strategy

Ship JS-only fixes via EAS Update; full rebuild via EAS Build. Runtime versions, channels, rollback. The "when can I OTA vs when do I rebuild" decision.

0 Updated today
voidcorp-core
Code & Development Listed

dependency-direction

Enforce the @repo/* import direction in a Turborepo workspace. Concrete violations + fixes. Composes with core:hexagonal-architecture and the boundary-direction-check hook.

0 Updated today
voidcorp-core
Code & Development Listed

package-extraction

Decide whether code in apps/<app>/ should be extracted into a new packages/<name>/ workspace. Most extractions are premature; this skill is the decision gate.

0 Updated today
voidcorp-core
Data & Documents Listed

turbo-pipeline-tuning

Configure turbo.json tasks correctly — dependsOn, outputs, cache keys, persistent tasks, remote cache. Get build speed right without over-engineering.

0 Updated today
voidcorp-core
Web & Frontend Listed

cache-component-pattern

Use Next.js 16 Cache Components correctly — when to opt in ('use cache'), when to opt out ('use no cache'), cache key strategy, scoping by user/org. Default is cached; uncache deliberately.

0 Updated today
voidcorp-core
Code & Development Listed

instrumentation-setup

Wire instrumentation.ts in Next.js 16 — Sentry, pino logger, OpenTelemetry traces. Edge vs Node runtime split. The single place observability is bootstrapped.

0 Updated today
voidcorp-core
Web & Frontend Listed

loading-error-boundaries

Place loading.tsx, error.tsx, not-found.tsx files at the right level — neither too high (poor UX) nor too low (unhandled errors). The skeleton matches the layout it replaces.

0 Updated today
voidcorp-core
Code & Development Listed

parallel-routes-slots

Use Next.js parallel routes (@slot) and intercepting routes ((.)foo) — when they're the right tool, when they're an anti-pattern. The "modal that's also a deep-linkable page" archetype.

0 Updated today
voidcorp-core
Code & Development Listed

route-group-decision

Decide when to use a (route-group), what to name it, and how to share layouts. The void-harness convention groups by trust boundary, not by visual section.

0 Updated today
voidcorp-core
AI & Automation Listed

install-prompt-ux

Surface the PWA install prompt at the right moment (engagement signal) with the right UI (custom button, not auto-prompt). Capture beforeinstallprompt, defer, recover declined.

0 Updated today
voidcorp-core
Code & Development Listed

service-worker-strategy

Pick caching strategy per route class (NetworkFirst, CacheFirst, StaleWhileRevalidate, NetworkOnly), version your caches, handle update activation. Use Serwist (Next) or vite-plugin-pwa.

0 Updated today
voidcorp-core
Web & Frontend Listed

client-vs-server-component

Decide which components run on server vs client in a React 19 / Next.js app and place the 'use client' boundary correctly. Server Components by default; client is the exception.

0 Updated today
voidcorp-core
Code & Development Listed

state-architecture

Decide where state lives — local, lifted, URL, server, client global. The decision tree to avoid useState-in-the-wrong-place sprawl. Default to URL or server before reaching for global stores.

0 Updated today
voidcorp-core
Code & Development Listed

env-validation

Validate environment variables at boot via Zod in @repo/core/env. Separate PUBLIC (NEXT_PUBLIC_*) from server-only. Fail fast at startup; never raw process.env in business code.

0 Updated today
voidcorp-core
Code & Development Listed

rate-limit-strategy

Choose rate limit window, max, and key strategy per action class. Per-user for authed, per-IP for public, escalation for auth-adjacent. Default values + when to deviate.

0 Updated today
voidcorp-core
Testing & QA Listed

testing-server-modules

Unit-test modules guarded by server-only / client-only under Vitest by aliasing those packages to an empty stub. Test-time only; never a substitute for the real build-time boundary.

0 Updated today
voidcorp-core
Code & Development Listed

webhook-handler-pattern

Build a webhook handler with signature verification, idempotency, and dead-letter routing. Per-source patterns (Stripe, Resend, GitHub). Self-contained — no harness wrappers required.

0 Updated today
voidcorp-core
Code & Development Listed

accessibility-first

WCAG 2.2 AA floor. Radix primitives only, touch >=44x44, keyboard parity, semantic HTML, form labels, aria-live errors, mobile-first dual-quality. Use when building or modifying UI.

0 Updated today
voidcorp-core
AI & Automation Listed

adr-workflow

Capture structural choices as one immutable ADR file with collision-free identity, explicit alternatives, reversal cost, and supersession. Use when future code depends on why.

0 Updated today
voidcorp-core
API & Backend Listed

api-and-interface-design

Contract-first design of any public interface — package exports, HTTP/REST, RPC/tRPC, SDK, module boundary. Minimal surface, stable boundary types, versioning. Use when shaping a public API.

0 Updated today
voidcorp-core
Code & Development Listed

async-safety

Idempotency by design. At-least-once with consumer dedup. Signature verify, replay window, idempotency keys, outbox, bounded retries, DLQ. Use for async/webhook/job/cron code.

0 Updated today
voidcorp-core
Code & Development Listed

backlog-autopilot

Opt-in parallel drain of independent Linear tickets, each in its own worktree subagent, reconciled into one integration PR gated by the full suite. Use when clearing independent tickets at once.

0 Updated today
voidcorp-core
AI & Automation Listed

brainstorming

Explore intent before code: pressure-test a raw idea, one question at a time, 2-3 approaches, design in sections, spec written and approved. HARD GATE — no code until the spec is approved.

0 Updated today
voidcorp-core
AI & Automation Listed

claude-md-authoring

Author a lean, runnable CLAUDE.md (or AGENTS.md). Only universal instructions; defer detail to docs; push style to linters and certainties to hooks. Use when writing or auditing a project CLAUDE.md.

0 Updated today
voidcorp-core
Code & Development Listed

code-review

Pre-PR critical pass. Six dimensions (correctness, tests, security, structure, readability, perf). Two modes (strict/souple). Composes the native /code-review and codex CLI. Use on a diff.

0 Updated today
voidcorp-core
Code & Development Listed

commit-discipline

Conventional Commits + mandatory "why" in body + scope + breaking-change marking. ASCII-only (no em dash, no emoji). Co-author trailer for AI pair. The git log is documentation. Use at every commit.

0 Updated today
voidcorp-core
Code & Development Listed

devex-audit

Audit an EXISTING dev-facing surface (API/CLI/SDK/docs): measured TTHW, real error-path tracing, evidence-backed DX scorecard, scoped refine. The audit ceiling to plan-review's DevEx-lens.

0 Updated today
voidcorp-core
Web & Frontend Listed

domain-driven-design

Bounded contexts, aggregates as consistency boundaries, value objects as branded types, always-valid domain, ubiquitous language. No CQRS, event sourcing, or generic Repository<T>. Use on the domain.

0 Updated today
voidcorp-core
Web & Frontend Listed

frontend-design

Anti-AI-slop UI. Density first, 3-size hierarchy, motion <250ms, components via @repo/ui (Radix/shadcn), mobile-first dual-quality. Brand from DESIGN.md. Use when building or modifying UI.

0 Updated today
voidcorp-core
Code & Development Listed

functional

Pure-by-default, errors as values (Result<T, E>), discriminated unions for state, immutability defaults, functional core / imperative shell. Side effects at adapters. Use for data flow or state.

0 Updated today
voidcorp-core
Code & Development Listed

hexagonal-architecture

Ports + adapters. Domain owns interfaces, adapters at the edge, function-parameter injection only, no DI / CQRS / mediator. Use when placing code or crossing module boundaries.

0 Updated today
voidcorp-core
Code & Development Listed

learning-capture

Capture a lesson when it appears — a stated project rule, a recurring/deja-vu fix, an end-of-cycle pattern, or a harness gap. Routes to PROJECT-DOCTRINE, a GitHub issue, or nothing. HITL strict.

0 Updated today
voidcorp-core
AI & Automation Listed

llm-cost-discipline

Sonnet default (Opus needs comment), prompt caching for >1024-token prompts, batch API for non-interactive, max_tokens declared, bounded retries, no full prompts in logs. Use on LLM API calls.

0 Updated today
voidcorp-core
Data & Documents Listed

make-pdf

Turn a markdown file into a publication-quality PDF — marked + puppeteer-core on the system Chrome, with page-number footers. No gstack daemon. For signed deliverables (DECLIK audits).

0 Updated today
voidcorp-core
API & Backend Listed

migrations-safety

Zero-downtime Postgres migrations. Two-phase changes, batched backfills, locking analysis, banned DDL patterns, CONCURRENTLY indexes, dev branch test, immutable after merge. Use on DB schema changes.

0 Updated today
voidcorp-core
Code & Development Listed

observability

Structured logs (no string interp), trace IDs end-to-end, error boundaries at async boundaries, anonymized user scope, no PII/secrets ever. Use @repo/core/logger not console.log. Use for prod code.

0 Updated today
voidcorp-core
Code & Development Listed

plan-review

Critique a written plan (not a diff) via four lenses: CEO premise/ambition, Eng test-coverage, Design states/slop, DevEx time-to-first-value. Proposes findings; the author disposes.

0 Updated today
voidcorp-core
Code & Development Listed

qa

Live browser QA of a running web app via the claude-in-chrome MCP: systematic exploration, edge/error/empty states, atomic fix loop, evidence-backed report. Report-only mode available.

0 Updated today
voidcorp-core
Code & Development Listed

autopilot

Use to drain a bounded cluster of independent ready tickets, each run end-to-end by ticket-runner in its own worktree, reconciled into one integration PR a human merges.

0 Updated today
voidcorp-core

Bio shown is the top-scored skill's repo description as a fallback — real GitHub bios land in a future update.