Tackl AGENTS.md

A project instruction file for coding agents working on Tackl, a software toolkit with its own component and styling conventions.

In plain words
What is it for?
Use it when creating or editing Tackl components, choosing HTML elements, importing shared tools, and following the project's styles and file structure.
Why use it?
It prevents agents from using unsupported components, imports, aliases, or file layouts that could break the project or conflict with its design rules.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/12-studio/tackl/agents-md
Clone the repo
git clone --depth 1 https://github.com/12-Studio/Tackl

Made for: Codex, OpenCode.

Per session 2,897 This file is loaded in full into every session.
When invoked 2,897 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02897 $0.02897
Opus 5 $0.01448 $0.01448
Sonnet 5 $0.00579 $0.00579
Haiku 4.5 $0.00290 $0.00290

Measured 2d ago against content hash 660f7d13d984, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Tackl AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 257 lines

How it starts

The opening of the file, as written. The whole thing — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md

Guidance for AI coding agents working in a Tackl project. Tool-agnostic — read by Cursor, Claude Code, Copilot, Zed, Aider, Gemini CLI and any tool that supports the agents.md convention.

Human-facing docs live in docs/ and README.md; deep-dive skills live in skills/ (see the end of this file).


The one rule that trips agents up most

There is exactly one semantic component: the polymorphic Div. Per-tag components (Section, Main, H1, P, Nav, …) do not exist — never import them.

import { Div } from '@tackl';

<Div as='section' $pad>…</Div>
<Div as='h1' $m='2/6' $l='3/9'>Heading</Div>

Pick the tag with the as prop, or fix it in a styles file with .attrs:

export const Jacket = styled(Div).attrs({ as: 'header' })(/* … */);

Div is a real styled.div, so it accepts spacing props ($mar, $pad, …), responsive grid-span props ($s$uber), and every normal HTML attribute — all fully typed.


Imports & aliases

Import Use for Never write
import { Div, bp, bpd, alpha, getBrand, … } from '@tackl' Primitives, breakpoints, theme getters import { Section } from '@tackl' (doesn't exist)
import { headlineL, bodyL } from '@tackl/type' Typography styles import … from '@/theme/tackl/type'
import Grid from '@waffl' The grid container (default import) import { Grid } from '@waffl', deep paths, import { Waffl }
import { fetchContent, GET_HOME } from '@cms' CMS data importing a CMS adapter folder directly

When editing existing files, normalise any legacy imports to the forms above.


Writing a component

Each component is a folder under src/components/ComponentName/:

index.tsx          # the component — logic and markup only
styles.ts          # ALL styled-components for this component
interface.ts       # prop types
Component.stories.tsx  # optional Storybook story

Read the full file on GitHub · 257 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 257 lines · 2,897 tokens per session scan A 660f7d13d984

Subscribe to this mod's changes

Tackl AGENTS.md is an instructions file published in the GitHub repository 12-Studio/Tackl (10 stars, last pushed 7d ago), licensed MIT. It adds 2,897 tokens to every session, about $0.0145 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

Next-js-Boilerplate AGENTS.md

AGENTS.md instructions for ixartz/Next-js-Boilerplate, covering agents, principles, token efficiency, commands and git commits.

ixartz/Next-js-Boilerplate · 881 tokens

satus AGENTS.md

Instructions for darkroomengineering/satus, covering agents.md - satus engineering standards, stack, enforced rules (ci fails without these), oxlint rules and typescript strict flags (all active in tsconfig.json).

darkroomengineering/satus · 6,160 tokens

satus CLAUDE.md

Instructions for darkroomengineering/satus, covering satus - ai agent guide and claude code notes.

darkroomengineering/satus · 96 tokens

b2b-saas-starter AGENTS.md

Instructions for brandhaug/b2b-saas-starter, covering b2b saas starter, intent node index, setup, dependencies and cross-cutting rules.

brandhaug/b2b-saas-starter · 1,082 tokens

Next-js-Boilerplate CLAUDE.md

Claude Code instructions for ixartz/Next-js-Boilerplate, a project described as: 🚀🎉📚 Nextjs Boilerplate and Starter with App Router and Page Router support, Tailwind CSS 4 and TypeScript ⚡️ Made with developer experience first: Next.js 16 + TypeScript + ESLint + Prettier + Drizzle ORM + Husky + Lint-Staged + Vitest…

ixartz/Next-js-Boilerplate · 5 tokens

b2b-saas-starter CLAUDE.md

Instructions for brandhaug/b2b-saas-starter, a project described as: Cloudflare-first B2B SaaS monorepo starter. TanStack Start, Effect v4, Drizzle on D1, Better Auth, Alchemy v2, REST + MCP, React Email, Storybook, Vitest, Playwright, oxlint, oxfmt, Turbo, Bun.

brandhaug/b2b-saas-starter · 3 tokens