this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

clanker: improve agents workflow

Clément fb9259ce 9e64b38f

+16 -1
+2
.gitignore
··· 2 2 .env 3 3 .envrc 4 4 .direnv 5 + .claude 6 + .codex
+14 -1
AGENTS.md
··· 4 4 - stack uses vite + tanstack start + solidjs + tailwindcss 5 5 - deployed on cloudflare workers by CD pipeline 6 6 - database is a cloudflare d1 interacted via prisma 7 - 7 + - the oauth-client-metadata.json is created by scripts/generate-metadata.ts 8 + - this project uses `pnpm` for dependencies management 8 9 - keep code well organized 9 10 - use server function as much as possible 11 + - always use pnpm run scripts, not direct binary invocations 12 + 13 + 14 + <!-- intent-skills:start --> 15 + ## Skill Loading 16 + 17 + Before substantial work: 18 + - Skill check: run `pnpx @tanstack/intent@latest list`, or use skills already listed in context. 19 + - Skill guidance: if one local skill clearly matches the task, run `pnpx @tanstack/intent@latest load <package>#<skill>` and follow the returned `SKILL.md`. 20 + - Monorepos: when working across packages, run the skill check from the workspace root and prefer the local skill for the package being changed. 21 + - Multiple matches: prefer the most specific local skill for the package or concern you are changing; load additional skills only when the task spans multiple packages or concerns. 22 + <!-- intent-skills:end -->