c15t
Installation
SKILL.md
c15t
Developer-first consent management platform for JavaScript, React, and Next.js. Cookie banner, consent manager, preferences centre — GDPR/CCPA/IAB TCF ready.
Only supports c15t >=2.0.0-rc.5. If the project uses an older version, ask about a v2 migration path.
Reading docs from node_modules
c15t packages bundle their documentation. Detect the user's framework from package.json imports, then read docs in priority order — most specific first:
- Framework package README — read the one that matches the project:
- Next.js project →
node_modules/@c15t/nextjs/docs/README.md - React project →
node_modules/@c15t/react/docs/README.md - Vanilla JS →
node_modules/c15t/docs/README.md
- Next.js project →
- Bundled docs —
node_modules/c15t/docs/contains detailed guides (API, integrations, concepts). Readdocs/README.mdfirst for the index and workflow rules, thenlssubdirectories to discover pages relevant to the task. - Other package READMEs as needed —
@c15t/backend
If node_modules/c15t/docs/ doesn't exist at the top level, search for a nested install:
find node_modules -path "*/c15t/docs/README.md" -not -path "*/node_modules/*/node_modules/*/node_modules/*" | head -1