gridaco

55 mods across 3 repositories, 2.9k stars between them.

agent-system

01

gridaco/grida

Skill Claude CodeCodex

Grida AI agent system work: @grida/daemon (DaemonServer, loopback HTTP perimeter, files/workspaces, secrets store, daemon discovery) and @grida/agent (the agent tenant: sessions, providers/BYOK, runtime/tool execution, skills discovery, prompts, tiers, sandbox hosts). Use for packages/grida-daemon/…

2.6k 11d ago A 127 tokens original Apache-2.0

ai-models

02

gridaco/grida

Skill Claude CodeCodex

Research, compare, and update AI model configurations. Covers text model tiers, image and video generation models, image tool models, pricing data sourcing, and provider-cost metering against prepaid org credit. Use when bumping model versions, adding new models, updating pricing, or auditing model specs against…

2.6k 11d ago A 65 tokens original Apache-2.0

code-react

03

gridaco/grida

Skill Claude CodeCodex

React-specific code shape in the Grida editor. Hooks cannot be tested or benchmarked and silently break tuned UX under layered composition, so they are barred from the engine and main system — load-bearing logic lives in classes and namespaces, hooks only as thin edge wires. data-testid follows component-root…

2.6k 11d ago A 106 tokens original Apache-2.0

code-ts

04

gridaco/grida

Skill Claude CodeCodex

TypeScript code shape inside a well-named module — taste, not lint. Prefer one class or namespace per file (the unit a test targets) over scattered free exports; consolidate related code, don't fragment. The unit of code should be the unit of spec. Use when authoring TS in editor/grida-canvas, editor/lib/, or…

2.6k 11d ago A 99 tokens original Apache-2.0

database

05

gridaco/grida

Skill Claude CodeCodex

Use BEFORE editing any file in supabase/migrations/ or supabase/schemas/, OR when the user runs a /database subcommand (compact local migration, rls scenarios, align). Encodes the three contracts that protect the Grida database layer: applied migrations are immutable, RLS implementation mirrors tests (never the…

2.6k 11d ago A 106 tokens original Apache-2.0

desktop

06

gridaco/grida

Skill Claude CodeCodex

Grida Desktop Electron shell and release-impact work: BrowserWindow, preload, window.grida, menus, protocol/deep links, file associations, Forge, path-scoped bridge security, Electron-only UI bugs, and CDP / Playwright verification. Use for desktop/, editor/app/desktop/, editor/scaffolds/desktop/, editor/lib/desktop/…

2.6k 11d ago A 133 tokens original Apache-2.0

docs-canvas

07

gridaco/grida

Skill Claude CodeCodex

Author and manage user-facing documentation for the Grida Canvas editor. Covers writing style, tone, product screenshots, demo state preparation, and content structure for pages under docs/editor/. Use when creating or editing canvas editor documentation, capturing screenshots of canvas features, or planning visual…

2.6k 11d ago A 88 tokens original Apache-2.0

docs-svg-kit

08

gridaco/grida

Skill Claude CodeCodex

Author SVG figures for Grida docs — diff-able, version-controlled vector diagrams embedded in doc pages instead of screenshots. Provides reusable primitives (selection chrome, size badges, anchor pins, resize cursors, click ripples), color/typography tokens, a starter template, and finished examples to crib from.…

2.6k 11d ago A 145 tokens original Apache-2.0

docs-wg

09

gridaco/grida

Skill Claude CodeCodex

Doctrine for drafting and keeping working-group docs under docs/wg/ — RFC/RFD specs and findings/research/glossary. A WG doc is a language-agnostic, code-agnostic study of a domain: it argues why and defines what, never how in our code. Use when writing or editing anything under docs/wg/, an RFC/RFD, a spec, a design…

2.6k 11d ago A 150 tokens original Apache-2.0

docs

10

gridaco/grida

Skill Claude CodeCodex

Decide which family a doc belongs to before drafting — SDK/developer, user/product, or working-group (WG) — since family sets the audience, home, and tone. Use when creating, moving, or restructuring docs, when unsure which directory a doc belongs in, or when a request says "document this" / "write docs for X" without…

2.6k 11d ago A 87 tokens original Apache-2.0

editor-perf

11

gridaco/grida

Skill Claude CodeCodex

Guides performance investigation, benchmarking, and optimization of the Grida Canvas web editor (TypeScript reducer, Immer, React hooks). Use when profiling reducer dispatch cost, diagnosing slow interactions (drag, resize, color change), writing or running editor benchmarks, instrumenting with PerfObserver, or…

2.6k 11d ago A 69 tokens original Apache-2.0

ee-billing

12

gridaco/grida

Skill Claude CodeCodex

Surface workflow for billing in Grida — Stripe (subscriptions) + Metronome (AI credit ledger). The stable contracts: gridabilling. is not REST-exposed (views/RPCs only), fnbillingapply are the single mutation points, webhook receivers are GRIDA-SEC-001, BYOK is the GRIDA-SEC-003 carve-out. Use when touching…

2.6k 11d ago A 127 tokens original Apache-2.0

ee

13

gridaco/grida

Skill Claude CodeCodex

Working pattern for enterprise-edition features in Grida — the commercial/hosted concerns (entitlement, BYOD, billing) on top of the OSS core. Anchor for the GRIDA-EE: grep marker, (ee) route group, -hosted package suffix, and namespaced grida schema. Use when adding or touching an EE-only feature, or deciding whether…

2.6k 11d ago A 103 tokens original Apache-2.0

etiology

14

gridaco/grida

Skill Claude CodeCodex

Bug-fix discipline — every defect has an etiology, the chain of cause that produced the observable fault; trace it before patching. Errors only grow: a bandaid leaks unless genuinely localized and leak-free. Walk the diagnostic ladder (presentation → proximate cause → API contract → isolated or systemic) before…

2.6k 11d ago A 101 tokens original Apache-2.0

fixtures

15

gridaco/grida

Skill Claude CodeCodex

Guides authoring, organizing, and referencing test fixtures in this repo. Use when creating new fixtures, writing tests that depend on fixtures, or deciding what should be checked into git. Engine fixtures (rendering corpora) live in the engine repo.

2.6k 11d ago A 53 tokens original Apache-2.0

gg

16

gridaco/grida

Skill Claude CodeCodex

Working pattern for Grida Gateway (GG) — Grida's first-party, metered, no-BYOK AI surface: the scoped-token mint, the OpenAI-compatible + native gateway endpoints, the gg client provider, and the desktop wiring that spends org credit without a user key. Anchor for the GRIDA-GG: grep marker; its security half is…

2.6k 11d ago A 165 tokens original Apache-2.0

grounding

17

gridaco/grida

Skill Claude CodeCodex

Establish what is actually true and current for the surface you are about to change — not just search. Grounding = locate the authoritative source and reconcile sources that disagree (code vs doc, migration vs schema, memory vs current code, live vs archived), not take the first hit. Use before any grep/find/explore…

2.6k 11d ago A 123 tokens original Apache-2.0

io-figma

18

gridaco/grida

Skill Claude CodeCodex

Guides work on the Figma I/O package (@grida/io-figma, packages/grida-canvas-io-figma/). Covers the fig-kiwi binary parser, Kiwi→REST→Grida conversion pipeline, fig2grida CLI, REST API JSON conversion, and testing with clipboard/fig/REST fixtures. Use when adding node type support, fixing conversion bugs, extending…

2.6k 11d ago A 118 tokens original Apache-2.0

io-grida

19

gridaco/grida

Skill Claude CodeCodex

Guides work on the Grida file format (.grida) from the TS side: the I/O packages that read/write it (loading, archive packing, clipboard) and the frozen schema bindings. Use when working with .grida files in the editor or packages, or debugging format round-trip issues. (The schema and the Rust decoder live in the…

2.6k 11d ago A 78 tokens original Apache-2.0

links

20

gridaco/grida

Skill Claude CodeCodex

Write any link or URL so it resolves where it is rendered, not where it lives in the repo. Use when authoring or editing a link — in docs, source docstrings, READMEs (incl. npm-published), or product UI: docs cross-refs, "see SECURITY.md", universal // routes, GitHub URLs.

2.6k 11d ago A 74 tokens original Apache-2.0

naming

21

gridaco/grida

Skill Claude CodeCodex

How to think about names in the Grida repo — not conventions, but what a name commits you to, reveals about the system, and costs to change. The central discipline is that a strict, honest name refuses to grow, and that refusal drives the repo's shape (flat modules, small agnostic packages, suffix siblings). Use when…

2.6k 11d ago A 94 tokens original Apache-2.0

opt-library

22

gridaco/grida

Skill Claude CodeCodex

Set up, download, verify, and seed the optional Grida Library developer corpus into local Supabase. Use when Library browse/search, Desktop reference picking, or agent Library tools need realistic local assets and Gemini embeddings; also use when changing the gridaco/grida consumer for gridaco/library developer-corpus…

2.6k 11d ago A 65 tokens original Apache-2.0

oss-standards

23

gridaco/grida

Skill Claude CodeCodex

Pre-PR discipline for a public-by-default repo. What a reviewer enforces beyond CI: secrets and internal data in diffs or screenshots, docs that name their reader, and the cleaning pass where incomplete or confusing artifacts get dropped. Use before opening any PR against gridaco/grida or when finalizing work for…

2.6k 11d ago A 72 tokens original Apache-2.0

pedantic

24

gridaco/grida

Skill Claude CodeCodex

Role profile — a reviewer who is fact-seeking, bedrock-seeking, honest, and rejecting. Demands that arguments rest on small facts that cannot be wrong (not on stacked assumptions dressed up as foundation), and that deliberately-unclear concepts be quarantined — never leaked into solid layers, never mixed with each…

2.6k 11d ago A 252 tokens original Apache-2.0