inkline

40 mods across 1 repository, 1.5k stars between them.

adversarial-qa

01

inkline/inkline

Skill Claude CodeCodex

Repro-first QA for Inkline — minimal .ink.tsx reproductions, the visual-parity and cross-target harnesses, fuzz targets, and how to audit teammates' claims. Use for bug verification, regression coverage, and claim audits.

1.5k yesterday A 55 tokens

benchmark-protocol

02

inkline/inkline

Skill Claude CodeCodex

How Inkline measures itself — compile performance, output size and quality vs hand-written components and Mitosis, fairness rules, and reporting format. Use for perf work, regression gates, and published comparisons.

1.5k yesterday A 45 tokens

inkline/inkline

Skill Claude CodeCodex

How to verify @inkline/plugin and @inkline/cli changes across the 6 bundler adapters and the two compile paths, including watch-mode scenarios and error-path checks. Use for any core/plugin or tooling/cli change and for QA of tooling claims.

1.5k yesterday A 60 tokens

inkline/inkline

Skill Claude CodeCodex

The Inkline compiler's end-to-end pipeline — parse → IR → analyze → per-target codegen → print — including the IR contracts, reactivity tracking, target rewrite rules, plugin hooks, the two compile paths, and known sharp edges. Use for any core/ work, or when reviewing it.

1.5k yesterday A 67 tokens

component-catalog

05

inkline/inkline

Skill Claude CodeCodex

How Inkline components are built and kept consistent — the headless/styled split, family anatomy, prop/axis conventions, recipe consumption, the current 5-family catalog and its gap list. Use when authoring, documenting, showcasing, or reviewing components.

1.5k yesterday A 56 tokens

create-component

06

inkline/inkline

Skill Claude CodeCodex

Build a new Inkline component end-to-end — research the API, implement the headless + styled .ink.tsx source, add Storybook stories, write cross-target tests, and finalize docs/changeset. Runs five phases in order with an approval gate and a commit after each. Use when the user wants to add a brand-new component (or…

1.5k yesterday A 81 tokens

create-pr

07

inkline/inkline

Skill Claude CodeCodex

Author a pull request in the Guild's standard shape — a fixed Summary / Changes / Verification / Notes skeleton that mirrors the review-gate, plus the hard anti-leak rule that no agent @mention or mention:// link ever reaches a public PR. Use whenever you are about to open a PR (e.g. /create-pr), so the PR passes…

1.5k yesterday A 79 tokens

inkline/inkline

Skill Claude CodeCodex

How design tokens and recipes flow from styleframe into Inkline — the presets, the two faces of virtual:styleframe, recipe class contracts, theming, and the rules for custom CSS in components. Use when designing, extending, or debugging component styling.

1.5k yesterday A 57 tokens

docs-writing-style

09

inkline/inkline

Skill Claude CodeCodex

How Inkline documentation is written and kept true — the doc surface, pointers-not-duplicates, the drift watch with its current inventory, voice rules, and the future docs website. Use for any docs/, AGENTS.md, README, or apps/website work.

1.5k yesterday A 57 tokens

document-component

10

inkline/inkline

Skill Claude CodeCodex

Phase 5 of building an Inkline component — finalize docs and the release. Complete TSDoc on the prop interfaces, add a changeset for the affected framework packages, confirm exports/freshness, and stage the future docs-site page (the docs website is not built yet — TBD). Use when wrapping up a component for release.

1.5k yesterday A 71 tokens

framework-interop

11

inkline/inkline

Skill Claude CodeCodex

The seven framework output packages and the boundaries Inkline lives on — exports contracts, peer-dep/version matrix, per-target capability gaps, idiom fidelity, and the styleframe upstream relationship. Use for ui/ work, framework upgrades, and boundary coordination.

1.5k yesterday A 57 tokens

implement-component

12

inkline/inkline

Skill Claude CodeCodex

Phase 2 of building an Inkline component — write the .ink.tsx source. Author the headless part(s) (behavior + accessibility, no styling), then one styled component that composes them and applies a styleframe recipe, then the .styleframe.ts, then register the export. Compiles to all 7 frameworks. Use when implementing…

1.5k yesterday A 87 tokens

ink-authoring-api

13

inkline/inkline

Skill Claude CodeCodex

The .ink.tsx authoring API — defineComponent, signals, control flow, slots, two-way binding, events — plus per-target rewrite behavior and the anti-patterns that reviewers reject on sight. Use whenever writing or reviewing .ink.tsx code.

1.5k yesterday A 57 tokens

inkline-project-map

14

inkline/inkline

Skill Claude CodeCodex

Ground-truth map of the Inkline monorepo — packages, layout, commands, conventions, known traps, and the styleframe ecosystem. Read before any work in the inkline codebase.

1.5k yesterday A 45 tokens

issue-triage

15

inkline/inkline

Skill Claude CodeCodex

Intake, labeling, routing, and hygiene for the Inkline board — including the path→owner routing table, the legacy-issue reality, and the repro request protocol. Use for triage sweeps and board maintenance.

1.5k yesterday A 50 tokens

multica-teamwork

16

inkline/inkline

Skill Claude CodeCodex

How the Inkline Guild works an issue in Multica — lifecycle, comment etiquette, mention routing, definition of done, escalation. Every agent carries this; follow it on every task.

1.5k yesterday A 42 tokens

platform-trust

17

inkline/inkline

Skill Claude CodeCodex

Inkline's platform & trust surface — the styleframe license boundary, supply-chain and secrets hygiene, npm distribution integrity, and the future Studio/commercial direction. Use for anything touching licenses, dependencies, tokens, or product surfaces.

1.5k yesterday A 50 tokens

release-train

18

inkline/inkline

Skill Claude CodeCodex

The Inkline release process — changesets flow, the CI gate, the not-yet-enabled publish step, post-release verification, and rollback. Use for versioning, releasing, and release-adjacent CI work.

1.5k yesterday A 48 tokens

research-component

19

inkline/inkline

Skill Claude CodeCodex

Phase 1 of building an Inkline component — design the API. Survey the WAI-ARIA pattern and prior art, then write a complete component spec (props, slots, events, variants, accessibility, styling plan) to .context/ for sign-off before any code. Use when starting a new component or redesigning an existing one's API.

1.5k yesterday A 73 tokens

review-gate

20

inkline/inkline

Skill Claude CodeCodex

The Inkline Guild's PR review checklist — correctness, simplicity, surgical diffs, changesets, doc freshness, semver, and Inkline-specific contract risks. The reviewer's operating manual.

1.5k yesterday A 43 tokens

starter-templates

21

inkline/inkline

Skill Claude CodeCodex

Anatomy and maintenance of inkline-starter- repos and examples — the two starter flavors, what every starter must include, per-framework specifics, and the clone-to-rendered-component-under-2-minutes bar. Use when creating or maintaining starters and examples.

1.5k yesterday A 57 tokens

stories-component

22

inkline/inkline

Skill Claude CodeCodex

Phase 3 of building an Inkline component — author single-source Storybook stories. Write a defineStories meta with typed args/argTypes and per-variant render helpers as .ink.tsx; these compile to CSF3 for all 7 frameworks. Use when adding or improving the stories for a component.

1.5k yesterday A 66 tokens

test-component

23

inkline/inkline

Skill Claude CodeCodex

Phase 4 of building an Inkline component — write colocated cross-target tests. Assert compilation to all 7 targets, expected diagnostics, conformance, output composition/imports/bindings, snapshots, and real-DOM behavior via Angular SSR. Targets 100% line+branch coverage. Use when adding or strengthening a component's…

1.5k yesterday A 72 tokens