[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-trackcn":3,"mdc-7mwehi-key":36,"related-org-vercel-labs-trackcn":1401,"related-repo-vercel-labs-trackcn":1566},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"trackcn","sync codebase files with trackcn","Use the trackcn CLI to sync files, directories, commits, pull requests, and agent skills from GitHub into a codebase while preserving local edits. Read this before running trackcn commands or modifying trackcn-managed files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"GitHub","github","tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},"CLI","cli",{"name":23,"slug":24,"type":15},"Git","git",28,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Ftrackcn","2026-09-03T07:48:41.819378",null,0,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Track GitHub files, directories, commits, pull requests, and agent skills like dependencies.","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Ftrackcn\u002Ftree\u002FHEAD\u002Fskills\u002Ftrackcn","---\nname: trackcn\ndescription: Use the trackcn CLI to sync files, directories, commits, pull requests, and agent skills from GitHub into a codebase while preserving local edits. Read this before running trackcn commands or modifying trackcn-managed files.\nallowed-tools: Bash(trackcn:*), Bash(npx trackcn:*)\n---\n\n# trackcn\n\n`trackcn` syncs files from GitHub into a codebase and records their upstream\nversions in `trackcn.json`. It protects local edits with a three-hash merge\nworkflow so an agent can reconcile upstream changes deliberately.\n\n## Core loop\n\n```bash\ntrackcn status --json\ntrackcn pull --dry-run --json\ntrackcn pull --json\n```\n\nRead `trackcn.json` before modifying a tracked file. A file listed under a\nsource's `files` map is managed by trackcn. If you need a local override, prefer\nadding a separate file outside the managed path instead of hand-editing the\ntracked file.\n\n## Add a source\n\n```bash\n# Raw file\ntrackcn add https:\u002F\u002Fexample.com\u002Fconfig.txt\n\n# GitHub file or directory\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Ftree\u002Fmain\u002Fpath\u002Fto\u002Fdirectory\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fblob\u002Fmain\u002Fpath\u002Fto\u002Ffile.ts\ntrackcn add owner\u002Frepo\u002Fpath\u002Fto\u002Fdirectory\ntrackcn add owner\u002Frepo\u002Ftree\u002Fmain\u002Fpath\u002Fto\u002Fdirectory\n\n# Gist, commit, commit range, or pull request\ntrackcn add https:\u002F\u002Fgist.github.com\u002Fuser\u002Fabc123\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fcommit\u002Fabc1234\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fcompare\u002Fv1.0...v2.0\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fpull\u002F42\n```\n\nAdd a local destination as the last argument when the upstream path should not\nbe written at the repository root:\n\n```bash\ntrackcn add owner\u002Frepo\u002Fpath\u002Fto\u002Fskill .\u002F.cursor\u002Fskills\u002Fmy-skill\n```\n\nFor multiple sources, use a destination ending in `\u002F`. trackcn derives one\nsubdirectory per source:\n\n```bash\ntrackcn add \\\n  owner\u002Frepo\u002Fskills\u002Ffrontend-design \\\n  owner\u002Frepo\u002Fskills\u002Ftesting \\\n  .\u002F.cursor\u002Fskills\u002F\n```\n\nUse `--dry-run` to preview writes, `--force` to overwrite local files\ndeliberately, and `--json` when another tool will consume the result.\n\n## Install curated GitHub registry items\n\nIf a repository defines a root shadcn `registry.json`, inspect its install\noptions and curated bundles with:\n\n```bash\ntrackcn add owner\u002Frepo\n```\n\nInstall and subscribe to a curated bundle with:\n\n```bash\ntrackcn add owner\u002Frepo\u002Fitem\ntrackcn add owner\u002Frepo\u002Fitem#v1.0.0\n```\n\nUse `trackcn add owner\u002Frepo .` when the complete repository should be installed.\nFor an unambiguous repository path, use `owner\u002Frepo\u002Ftree\u002Fref\u002Fpath` or\n`owner\u002Frepo\u002Fblob\u002Fref\u002Fpath`. A short `owner\u002Frepo\u002Fpath` resolves a curated\nregistry item first and falls back to the repository's actual default branch.\n\ntrackcn consumes shadcn's GitHub registry format instead of defining a competing\ncatalog schema. Curated bundles are recorded in `trackcn.json`, so use\n`trackcn status` and `trackcn pull` to keep them current.\n\n## Pull updates\n\n```bash\ntrackcn pull --dry-run --json\ntrackcn pull --json\n```\n\nWhen upstream changed and the local file still matches the stored hash, trackcn\nupdates it directly. When both upstream and the local file changed, trackcn\nprepends a `\u003C\u003C\u003C\u003C\u003C\u003C\u003C trackcn` marker block and reports the file in `merged`.\n\nAfter a merge:\n\n1. Open every file listed in `merged`.\n2. Treat each marker block as an upstream diff and the content below the\n   blocks as the local version. Successive upstream changes stack as separate\n   blocks, newest first — apply them oldest-to-newest.\n3. Reconcile the intended result in the file. The diff is upstream-only\n   (old upstream → new upstream), so applying it never removes local edits.\n4. Remove every marker block, including the `\u003C\u003C\u003C\u003C\u003C\u003C\u003C trackcn` and\n   `>>>>>>> trackcn` lines.\n5. Run tests or validation for the affected code.\n6. Run `trackcn status --json` and confirm there are no unresolved merges.\n\nDo not run `trackcn pull --force` unless discarding local edits is intentional.\n\n## Check status\n\n```bash\ntrackcn status\ntrackcn status --json\n```\n\n`status` exits `0` when all sources are current and managed files match their\nstored hashes. It exits `1` when an upstream moved, a managed file changed\nlocally, or a merge marker is unresolved. In CI:\n\n```yaml\n- run: npx trackcn status\n```\n\n## Remove a source\n\n```bash\n# Stop tracking the source but leave its files on disk\ntrackcn remove owner\u002Frepo\u002Fpath\n\n# Stop tracking the source and delete its tracked files\ntrackcn remove owner\u002Frepo\u002Fpath --hard\n```\n\nUse a partial URL when it uniquely identifies one source. Inspect\n`trackcn.json` first when using `--hard`.\n\n## Agent skills recipe\n\nAgent skills are ordinary GitHub directories. Track project-specific skills\ninside the repository:\n\n```bash\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Fskills\u002Ftree\u002Fmain\u002Fskills .\u002F.cursor\u002Fskills\ngit add trackcn.json .cursor\u002Fskills\n```\n\nRun trackcn from `$HOME` instead when you want a user-level manifest and\nuser-level skill directory:\n\n```bash\ncd ~\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Fskills\u002Ftree\u002Fmain\u002Fskills .\u002F.cursor\u002Fskills\n```\n\nDo not hand-edit trackcn-managed skill files. Track a fork or place a local\noverride outside the managed directory when different behavior is required.\n\n## Post-pull hooks\n\nAttach a shell command that should run after a source changes:\n\n```bash\ntrackcn add owner\u002Frepo\u002Ficons .\u002Ficons --post-pull \"npm run build:icons\"\n```\n\nHooks execute shell commands from `trackcn.json`. Inspect unfamiliar manifests\nbefore pulling.\n\n## Authentication\n\nSet `TRACKCN_GITHUB_TOKEN`, `GITHUB_TOKEN`, or `GH_TOKEN` when GitHub API\nrequests need authentication or a higher rate limit:\n\n```bash\nTRACKCN_GITHUB_TOKEN=... trackcn pull\n```\n\nFor interactive use, trackcn can store a browser login outside the manifest:\n\n```bash\ntrackcn auth login\ntrackcn auth status\ntrackcn auth logout\n```\n\nA stored login lives in `~\u002F.trackcn\u002Fauth.json`, never in `trackcn.json`. In CI\nor headless environments, use a token env var instead — the browser flow only\nauto-starts at an interactive terminal.\n\n## Load this guide again\n\n```bash\ntrackcn skills get trackcn\ntrackcn skills path trackcn\n```\n",{"data":37,"body":39},{"name":4,"description":6,"allowed-tools":38},"Bash(trackcn:*), Bash(npx trackcn:*)",{"type":40,"children":41},"root",[42,49,69,76,147,167,173,377,382,410,423,479,508,514,527,550,555,594,630,658,664,705,726,731,795,808,814,848,875,909,915,983,1002,1008,1013,1062,1075,1115,1120,1126,1131,1179,1191,1197,1226,1260,1265,1320,1340,1346,1395],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":4},"text",{"type":43,"tag":50,"props":51,"children":52},"p",{},[53,59,61,67],{"type":43,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":48,"value":4},{"type":48,"value":60}," syncs files from GitHub into a codebase and records their upstream\nversions in ",{"type":43,"tag":54,"props":62,"children":64},{"className":63},[],[65],{"type":48,"value":66},"trackcn.json",{"type":48,"value":68},". It protects local edits with a three-hash merge\nworkflow so an agent can reconcile upstream changes deliberately.",{"type":43,"tag":70,"props":71,"children":73},"h2",{"id":72},"core-loop",[74],{"type":48,"value":75},"Core loop",{"type":43,"tag":77,"props":78,"children":83},"pre",{"className":79,"code":80,"language":81,"meta":82,"style":82},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","trackcn status --json\ntrackcn pull --dry-run --json\ntrackcn pull --json\n","bash","",[84],{"type":43,"tag":54,"props":85,"children":86},{"__ignoreMap":82},[87,109,131],{"type":43,"tag":88,"props":89,"children":92},"span",{"class":90,"line":91},"line",1,[93,98,104],{"type":43,"tag":88,"props":94,"children":96},{"style":95},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[97],{"type":48,"value":4},{"type":43,"tag":88,"props":99,"children":101},{"style":100},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[102],{"type":48,"value":103}," status",{"type":43,"tag":88,"props":105,"children":106},{"style":100},[107],{"type":48,"value":108}," --json\n",{"type":43,"tag":88,"props":110,"children":112},{"class":90,"line":111},2,[113,117,122,127],{"type":43,"tag":88,"props":114,"children":115},{"style":95},[116],{"type":48,"value":4},{"type":43,"tag":88,"props":118,"children":119},{"style":100},[120],{"type":48,"value":121}," pull",{"type":43,"tag":88,"props":123,"children":124},{"style":100},[125],{"type":48,"value":126}," --dry-run",{"type":43,"tag":88,"props":128,"children":129},{"style":100},[130],{"type":48,"value":108},{"type":43,"tag":88,"props":132,"children":134},{"class":90,"line":133},3,[135,139,143],{"type":43,"tag":88,"props":136,"children":137},{"style":95},[138],{"type":48,"value":4},{"type":43,"tag":88,"props":140,"children":141},{"style":100},[142],{"type":48,"value":121},{"type":43,"tag":88,"props":144,"children":145},{"style":100},[146],{"type":48,"value":108},{"type":43,"tag":50,"props":148,"children":149},{},[150,152,157,159,165],{"type":48,"value":151},"Read ",{"type":43,"tag":54,"props":153,"children":155},{"className":154},[],[156],{"type":48,"value":66},{"type":48,"value":158}," before modifying a tracked file. A file listed under a\nsource's ",{"type":43,"tag":54,"props":160,"children":162},{"className":161},[],[163],{"type":48,"value":164},"files",{"type":48,"value":166}," map is managed by trackcn. If you need a local override, prefer\nadding a separate file outside the managed path instead of hand-editing the\ntracked file.",{"type":43,"tag":70,"props":168,"children":170},{"id":169},"add-a-source",[171],{"type":48,"value":172},"Add a source",{"type":43,"tag":77,"props":174,"children":176},{"className":79,"code":175,"language":81,"meta":82,"style":82},"# Raw file\ntrackcn add https:\u002F\u002Fexample.com\u002Fconfig.txt\n\n# GitHub file or directory\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Ftree\u002Fmain\u002Fpath\u002Fto\u002Fdirectory\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fblob\u002Fmain\u002Fpath\u002Fto\u002Ffile.ts\ntrackcn add owner\u002Frepo\u002Fpath\u002Fto\u002Fdirectory\ntrackcn add owner\u002Frepo\u002Ftree\u002Fmain\u002Fpath\u002Fto\u002Fdirectory\n\n# Gist, commit, commit range, or pull request\ntrackcn add https:\u002F\u002Fgist.github.com\u002Fuser\u002Fabc123\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fcommit\u002Fabc1234\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fcompare\u002Fv1.0...v2.0\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fpull\u002F42\n",[177],{"type":43,"tag":54,"props":178,"children":179},{"__ignoreMap":82},[180,189,206,215,224,241,258,275,292,300,309,326,343,360],{"type":43,"tag":88,"props":181,"children":182},{"class":90,"line":91},[183],{"type":43,"tag":88,"props":184,"children":186},{"style":185},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[187],{"type":48,"value":188},"# Raw file\n",{"type":43,"tag":88,"props":190,"children":191},{"class":90,"line":111},[192,196,201],{"type":43,"tag":88,"props":193,"children":194},{"style":95},[195],{"type":48,"value":4},{"type":43,"tag":88,"props":197,"children":198},{"style":100},[199],{"type":48,"value":200}," add",{"type":43,"tag":88,"props":202,"children":203},{"style":100},[204],{"type":48,"value":205}," https:\u002F\u002Fexample.com\u002Fconfig.txt\n",{"type":43,"tag":88,"props":207,"children":208},{"class":90,"line":133},[209],{"type":43,"tag":88,"props":210,"children":212},{"emptyLinePlaceholder":211},true,[213],{"type":48,"value":214},"\n",{"type":43,"tag":88,"props":216,"children":218},{"class":90,"line":217},4,[219],{"type":43,"tag":88,"props":220,"children":221},{"style":185},[222],{"type":48,"value":223},"# GitHub file or directory\n",{"type":43,"tag":88,"props":225,"children":227},{"class":90,"line":226},5,[228,232,236],{"type":43,"tag":88,"props":229,"children":230},{"style":95},[231],{"type":48,"value":4},{"type":43,"tag":88,"props":233,"children":234},{"style":100},[235],{"type":48,"value":200},{"type":43,"tag":88,"props":237,"children":238},{"style":100},[239],{"type":48,"value":240}," https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Ftree\u002Fmain\u002Fpath\u002Fto\u002Fdirectory\n",{"type":43,"tag":88,"props":242,"children":244},{"class":90,"line":243},6,[245,249,253],{"type":43,"tag":88,"props":246,"children":247},{"style":95},[248],{"type":48,"value":4},{"type":43,"tag":88,"props":250,"children":251},{"style":100},[252],{"type":48,"value":200},{"type":43,"tag":88,"props":254,"children":255},{"style":100},[256],{"type":48,"value":257}," https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fblob\u002Fmain\u002Fpath\u002Fto\u002Ffile.ts\n",{"type":43,"tag":88,"props":259,"children":261},{"class":90,"line":260},7,[262,266,270],{"type":43,"tag":88,"props":263,"children":264},{"style":95},[265],{"type":48,"value":4},{"type":43,"tag":88,"props":267,"children":268},{"style":100},[269],{"type":48,"value":200},{"type":43,"tag":88,"props":271,"children":272},{"style":100},[273],{"type":48,"value":274}," owner\u002Frepo\u002Fpath\u002Fto\u002Fdirectory\n",{"type":43,"tag":88,"props":276,"children":278},{"class":90,"line":277},8,[279,283,287],{"type":43,"tag":88,"props":280,"children":281},{"style":95},[282],{"type":48,"value":4},{"type":43,"tag":88,"props":284,"children":285},{"style":100},[286],{"type":48,"value":200},{"type":43,"tag":88,"props":288,"children":289},{"style":100},[290],{"type":48,"value":291}," owner\u002Frepo\u002Ftree\u002Fmain\u002Fpath\u002Fto\u002Fdirectory\n",{"type":43,"tag":88,"props":293,"children":295},{"class":90,"line":294},9,[296],{"type":43,"tag":88,"props":297,"children":298},{"emptyLinePlaceholder":211},[299],{"type":48,"value":214},{"type":43,"tag":88,"props":301,"children":303},{"class":90,"line":302},10,[304],{"type":43,"tag":88,"props":305,"children":306},{"style":185},[307],{"type":48,"value":308},"# Gist, commit, commit range, or pull request\n",{"type":43,"tag":88,"props":310,"children":312},{"class":90,"line":311},11,[313,317,321],{"type":43,"tag":88,"props":314,"children":315},{"style":95},[316],{"type":48,"value":4},{"type":43,"tag":88,"props":318,"children":319},{"style":100},[320],{"type":48,"value":200},{"type":43,"tag":88,"props":322,"children":323},{"style":100},[324],{"type":48,"value":325}," https:\u002F\u002Fgist.github.com\u002Fuser\u002Fabc123\n",{"type":43,"tag":88,"props":327,"children":329},{"class":90,"line":328},12,[330,334,338],{"type":43,"tag":88,"props":331,"children":332},{"style":95},[333],{"type":48,"value":4},{"type":43,"tag":88,"props":335,"children":336},{"style":100},[337],{"type":48,"value":200},{"type":43,"tag":88,"props":339,"children":340},{"style":100},[341],{"type":48,"value":342}," https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fcommit\u002Fabc1234\n",{"type":43,"tag":88,"props":344,"children":346},{"class":90,"line":345},13,[347,351,355],{"type":43,"tag":88,"props":348,"children":349},{"style":95},[350],{"type":48,"value":4},{"type":43,"tag":88,"props":352,"children":353},{"style":100},[354],{"type":48,"value":200},{"type":43,"tag":88,"props":356,"children":357},{"style":100},[358],{"type":48,"value":359}," https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fcompare\u002Fv1.0...v2.0\n",{"type":43,"tag":88,"props":361,"children":363},{"class":90,"line":362},14,[364,368,372],{"type":43,"tag":88,"props":365,"children":366},{"style":95},[367],{"type":48,"value":4},{"type":43,"tag":88,"props":369,"children":370},{"style":100},[371],{"type":48,"value":200},{"type":43,"tag":88,"props":373,"children":374},{"style":100},[375],{"type":48,"value":376}," https:\u002F\u002Fgithub.com\u002Fowner\u002Frepo\u002Fpull\u002F42\n",{"type":43,"tag":50,"props":378,"children":379},{},[380],{"type":48,"value":381},"Add a local destination as the last argument when the upstream path should not\nbe written at the repository root:",{"type":43,"tag":77,"props":383,"children":385},{"className":79,"code":384,"language":81,"meta":82,"style":82},"trackcn add owner\u002Frepo\u002Fpath\u002Fto\u002Fskill .\u002F.cursor\u002Fskills\u002Fmy-skill\n",[386],{"type":43,"tag":54,"props":387,"children":388},{"__ignoreMap":82},[389],{"type":43,"tag":88,"props":390,"children":391},{"class":90,"line":91},[392,396,400,405],{"type":43,"tag":88,"props":393,"children":394},{"style":95},[395],{"type":48,"value":4},{"type":43,"tag":88,"props":397,"children":398},{"style":100},[399],{"type":48,"value":200},{"type":43,"tag":88,"props":401,"children":402},{"style":100},[403],{"type":48,"value":404}," owner\u002Frepo\u002Fpath\u002Fto\u002Fskill",{"type":43,"tag":88,"props":406,"children":407},{"style":100},[408],{"type":48,"value":409}," .\u002F.cursor\u002Fskills\u002Fmy-skill\n",{"type":43,"tag":50,"props":411,"children":412},{},[413,415,421],{"type":48,"value":414},"For multiple sources, use a destination ending in ",{"type":43,"tag":54,"props":416,"children":418},{"className":417},[],[419],{"type":48,"value":420},"\u002F",{"type":48,"value":422},". trackcn derives one\nsubdirectory per source:",{"type":43,"tag":77,"props":424,"children":426},{"className":79,"code":425,"language":81,"meta":82,"style":82},"trackcn add \\\n  owner\u002Frepo\u002Fskills\u002Ffrontend-design \\\n  owner\u002Frepo\u002Fskills\u002Ftesting \\\n  .\u002F.cursor\u002Fskills\u002F\n",[427],{"type":43,"tag":54,"props":428,"children":429},{"__ignoreMap":82},[430,447,459,471],{"type":43,"tag":88,"props":431,"children":432},{"class":90,"line":91},[433,437,441],{"type":43,"tag":88,"props":434,"children":435},{"style":95},[436],{"type":48,"value":4},{"type":43,"tag":88,"props":438,"children":439},{"style":100},[440],{"type":48,"value":200},{"type":43,"tag":88,"props":442,"children":444},{"style":443},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[445],{"type":48,"value":446}," \\\n",{"type":43,"tag":88,"props":448,"children":449},{"class":90,"line":111},[450,455],{"type":43,"tag":88,"props":451,"children":452},{"style":100},[453],{"type":48,"value":454},"  owner\u002Frepo\u002Fskills\u002Ffrontend-design",{"type":43,"tag":88,"props":456,"children":457},{"style":443},[458],{"type":48,"value":446},{"type":43,"tag":88,"props":460,"children":461},{"class":90,"line":133},[462,467],{"type":43,"tag":88,"props":463,"children":464},{"style":100},[465],{"type":48,"value":466},"  owner\u002Frepo\u002Fskills\u002Ftesting",{"type":43,"tag":88,"props":468,"children":469},{"style":443},[470],{"type":48,"value":446},{"type":43,"tag":88,"props":472,"children":473},{"class":90,"line":217},[474],{"type":43,"tag":88,"props":475,"children":476},{"style":100},[477],{"type":48,"value":478},"  .\u002F.cursor\u002Fskills\u002F\n",{"type":43,"tag":50,"props":480,"children":481},{},[482,484,490,492,498,500,506],{"type":48,"value":483},"Use ",{"type":43,"tag":54,"props":485,"children":487},{"className":486},[],[488],{"type":48,"value":489},"--dry-run",{"type":48,"value":491}," to preview writes, ",{"type":43,"tag":54,"props":493,"children":495},{"className":494},[],[496],{"type":48,"value":497},"--force",{"type":48,"value":499}," to overwrite local files\ndeliberately, and ",{"type":43,"tag":54,"props":501,"children":503},{"className":502},[],[504],{"type":48,"value":505},"--json",{"type":48,"value":507}," when another tool will consume the result.",{"type":43,"tag":70,"props":509,"children":511},{"id":510},"install-curated-github-registry-items",[512],{"type":48,"value":513},"Install curated GitHub registry items",{"type":43,"tag":50,"props":515,"children":516},{},[517,519,525],{"type":48,"value":518},"If a repository defines a root shadcn ",{"type":43,"tag":54,"props":520,"children":522},{"className":521},[],[523],{"type":48,"value":524},"registry.json",{"type":48,"value":526},", inspect its install\noptions and curated bundles with:",{"type":43,"tag":77,"props":528,"children":530},{"className":79,"code":529,"language":81,"meta":82,"style":82},"trackcn add owner\u002Frepo\n",[531],{"type":43,"tag":54,"props":532,"children":533},{"__ignoreMap":82},[534],{"type":43,"tag":88,"props":535,"children":536},{"class":90,"line":91},[537,541,545],{"type":43,"tag":88,"props":538,"children":539},{"style":95},[540],{"type":48,"value":4},{"type":43,"tag":88,"props":542,"children":543},{"style":100},[544],{"type":48,"value":200},{"type":43,"tag":88,"props":546,"children":547},{"style":100},[548],{"type":48,"value":549}," owner\u002Frepo\n",{"type":43,"tag":50,"props":551,"children":552},{},[553],{"type":48,"value":554},"Install and subscribe to a curated bundle with:",{"type":43,"tag":77,"props":556,"children":558},{"className":79,"code":557,"language":81,"meta":82,"style":82},"trackcn add owner\u002Frepo\u002Fitem\ntrackcn add owner\u002Frepo\u002Fitem#v1.0.0\n",[559],{"type":43,"tag":54,"props":560,"children":561},{"__ignoreMap":82},[562,578],{"type":43,"tag":88,"props":563,"children":564},{"class":90,"line":91},[565,569,573],{"type":43,"tag":88,"props":566,"children":567},{"style":95},[568],{"type":48,"value":4},{"type":43,"tag":88,"props":570,"children":571},{"style":100},[572],{"type":48,"value":200},{"type":43,"tag":88,"props":574,"children":575},{"style":100},[576],{"type":48,"value":577}," owner\u002Frepo\u002Fitem\n",{"type":43,"tag":88,"props":579,"children":580},{"class":90,"line":111},[581,585,589],{"type":43,"tag":88,"props":582,"children":583},{"style":95},[584],{"type":48,"value":4},{"type":43,"tag":88,"props":586,"children":587},{"style":100},[588],{"type":48,"value":200},{"type":43,"tag":88,"props":590,"children":591},{"style":100},[592],{"type":48,"value":593}," owner\u002Frepo\u002Fitem#v1.0.0\n",{"type":43,"tag":50,"props":595,"children":596},{},[597,598,604,606,612,614,620,622,628],{"type":48,"value":483},{"type":43,"tag":54,"props":599,"children":601},{"className":600},[],[602],{"type":48,"value":603},"trackcn add owner\u002Frepo .",{"type":48,"value":605}," when the complete repository should be installed.\nFor an unambiguous repository path, use ",{"type":43,"tag":54,"props":607,"children":609},{"className":608},[],[610],{"type":48,"value":611},"owner\u002Frepo\u002Ftree\u002Fref\u002Fpath",{"type":48,"value":613}," or\n",{"type":43,"tag":54,"props":615,"children":617},{"className":616},[],[618],{"type":48,"value":619},"owner\u002Frepo\u002Fblob\u002Fref\u002Fpath",{"type":48,"value":621},". A short ",{"type":43,"tag":54,"props":623,"children":625},{"className":624},[],[626],{"type":48,"value":627},"owner\u002Frepo\u002Fpath",{"type":48,"value":629}," resolves a curated\nregistry item first and falls back to the repository's actual default branch.",{"type":43,"tag":50,"props":631,"children":632},{},[633,635,640,642,648,650,656],{"type":48,"value":634},"trackcn consumes shadcn's GitHub registry format instead of defining a competing\ncatalog schema. Curated bundles are recorded in ",{"type":43,"tag":54,"props":636,"children":638},{"className":637},[],[639],{"type":48,"value":66},{"type":48,"value":641},", so use\n",{"type":43,"tag":54,"props":643,"children":645},{"className":644},[],[646],{"type":48,"value":647},"trackcn status",{"type":48,"value":649}," and ",{"type":43,"tag":54,"props":651,"children":653},{"className":652},[],[654],{"type":48,"value":655},"trackcn pull",{"type":48,"value":657}," to keep them current.",{"type":43,"tag":70,"props":659,"children":661},{"id":660},"pull-updates",[662],{"type":48,"value":663},"Pull updates",{"type":43,"tag":77,"props":665,"children":667},{"className":79,"code":666,"language":81,"meta":82,"style":82},"trackcn pull --dry-run --json\ntrackcn pull --json\n",[668],{"type":43,"tag":54,"props":669,"children":670},{"__ignoreMap":82},[671,690],{"type":43,"tag":88,"props":672,"children":673},{"class":90,"line":91},[674,678,682,686],{"type":43,"tag":88,"props":675,"children":676},{"style":95},[677],{"type":48,"value":4},{"type":43,"tag":88,"props":679,"children":680},{"style":100},[681],{"type":48,"value":121},{"type":43,"tag":88,"props":683,"children":684},{"style":100},[685],{"type":48,"value":126},{"type":43,"tag":88,"props":687,"children":688},{"style":100},[689],{"type":48,"value":108},{"type":43,"tag":88,"props":691,"children":692},{"class":90,"line":111},[693,697,701],{"type":43,"tag":88,"props":694,"children":695},{"style":95},[696],{"type":48,"value":4},{"type":43,"tag":88,"props":698,"children":699},{"style":100},[700],{"type":48,"value":121},{"type":43,"tag":88,"props":702,"children":703},{"style":100},[704],{"type":48,"value":108},{"type":43,"tag":50,"props":706,"children":707},{},[708,710,716,718,724],{"type":48,"value":709},"When upstream changed and the local file still matches the stored hash, trackcn\nupdates it directly. When both upstream and the local file changed, trackcn\nprepends a ",{"type":43,"tag":54,"props":711,"children":713},{"className":712},[],[714],{"type":48,"value":715},"\u003C\u003C\u003C\u003C\u003C\u003C\u003C trackcn",{"type":48,"value":717}," marker block and reports the file in ",{"type":43,"tag":54,"props":719,"children":721},{"className":720},[],[722],{"type":48,"value":723},"merged",{"type":48,"value":725},".",{"type":43,"tag":50,"props":727,"children":728},{},[729],{"type":48,"value":730},"After a merge:",{"type":43,"tag":732,"props":733,"children":734},"ol",{},[735,747,752,757,777,782],{"type":43,"tag":736,"props":737,"children":738},"li",{},[739,741,746],{"type":48,"value":740},"Open every file listed in ",{"type":43,"tag":54,"props":742,"children":744},{"className":743},[],[745],{"type":48,"value":723},{"type":48,"value":725},{"type":43,"tag":736,"props":748,"children":749},{},[750],{"type":48,"value":751},"Treat each marker block as an upstream diff and the content below the\nblocks as the local version. Successive upstream changes stack as separate\nblocks, newest first — apply them oldest-to-newest.",{"type":43,"tag":736,"props":753,"children":754},{},[755],{"type":48,"value":756},"Reconcile the intended result in the file. The diff is upstream-only\n(old upstream → new upstream), so applying it never removes local edits.",{"type":43,"tag":736,"props":758,"children":759},{},[760,762,767,769,775],{"type":48,"value":761},"Remove every marker block, including the ",{"type":43,"tag":54,"props":763,"children":765},{"className":764},[],[766],{"type":48,"value":715},{"type":48,"value":768}," and\n",{"type":43,"tag":54,"props":770,"children":772},{"className":771},[],[773],{"type":48,"value":774},">>>>>>> trackcn",{"type":48,"value":776}," lines.",{"type":43,"tag":736,"props":778,"children":779},{},[780],{"type":48,"value":781},"Run tests or validation for the affected code.",{"type":43,"tag":736,"props":783,"children":784},{},[785,787,793],{"type":48,"value":786},"Run ",{"type":43,"tag":54,"props":788,"children":790},{"className":789},[],[791],{"type":48,"value":792},"trackcn status --json",{"type":48,"value":794}," and confirm there are no unresolved merges.",{"type":43,"tag":50,"props":796,"children":797},{},[798,800,806],{"type":48,"value":799},"Do not run ",{"type":43,"tag":54,"props":801,"children":803},{"className":802},[],[804],{"type":48,"value":805},"trackcn pull --force",{"type":48,"value":807}," unless discarding local edits is intentional.",{"type":43,"tag":70,"props":809,"children":811},{"id":810},"check-status",[812],{"type":48,"value":813},"Check status",{"type":43,"tag":77,"props":815,"children":817},{"className":79,"code":816,"language":81,"meta":82,"style":82},"trackcn status\ntrackcn status --json\n",[818],{"type":43,"tag":54,"props":819,"children":820},{"__ignoreMap":82},[821,833],{"type":43,"tag":88,"props":822,"children":823},{"class":90,"line":91},[824,828],{"type":43,"tag":88,"props":825,"children":826},{"style":95},[827],{"type":48,"value":4},{"type":43,"tag":88,"props":829,"children":830},{"style":100},[831],{"type":48,"value":832}," status\n",{"type":43,"tag":88,"props":834,"children":835},{"class":90,"line":111},[836,840,844],{"type":43,"tag":88,"props":837,"children":838},{"style":95},[839],{"type":48,"value":4},{"type":43,"tag":88,"props":841,"children":842},{"style":100},[843],{"type":48,"value":103},{"type":43,"tag":88,"props":845,"children":846},{"style":100},[847],{"type":48,"value":108},{"type":43,"tag":50,"props":849,"children":850},{},[851,857,859,865,867,873],{"type":43,"tag":54,"props":852,"children":854},{"className":853},[],[855],{"type":48,"value":856},"status",{"type":48,"value":858}," exits ",{"type":43,"tag":54,"props":860,"children":862},{"className":861},[],[863],{"type":48,"value":864},"0",{"type":48,"value":866}," when all sources are current and managed files match their\nstored hashes. It exits ",{"type":43,"tag":54,"props":868,"children":870},{"className":869},[],[871],{"type":48,"value":872},"1",{"type":48,"value":874}," when an upstream moved, a managed file changed\nlocally, or a merge marker is unresolved. In CI:",{"type":43,"tag":77,"props":876,"children":880},{"className":877,"code":878,"language":879,"meta":82,"style":82},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","- run: npx trackcn status\n","yaml",[881],{"type":43,"tag":54,"props":882,"children":883},{"__ignoreMap":82},[884],{"type":43,"tag":88,"props":885,"children":886},{"class":90,"line":91},[887,893,899,904],{"type":43,"tag":88,"props":888,"children":890},{"style":889},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[891],{"type":48,"value":892},"-",{"type":43,"tag":88,"props":894,"children":896},{"style":895},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[897],{"type":48,"value":898}," run",{"type":43,"tag":88,"props":900,"children":901},{"style":889},[902],{"type":48,"value":903},":",{"type":43,"tag":88,"props":905,"children":906},{"style":100},[907],{"type":48,"value":908}," npx trackcn status\n",{"type":43,"tag":70,"props":910,"children":912},{"id":911},"remove-a-source",[913],{"type":48,"value":914},"Remove a source",{"type":43,"tag":77,"props":916,"children":918},{"className":79,"code":917,"language":81,"meta":82,"style":82},"# Stop tracking the source but leave its files on disk\ntrackcn remove owner\u002Frepo\u002Fpath\n\n# Stop tracking the source and delete its tracked files\ntrackcn remove owner\u002Frepo\u002Fpath --hard\n",[919],{"type":43,"tag":54,"props":920,"children":921},{"__ignoreMap":82},[922,930,947,954,962],{"type":43,"tag":88,"props":923,"children":924},{"class":90,"line":91},[925],{"type":43,"tag":88,"props":926,"children":927},{"style":185},[928],{"type":48,"value":929},"# Stop tracking the source but leave its files on disk\n",{"type":43,"tag":88,"props":931,"children":932},{"class":90,"line":111},[933,937,942],{"type":43,"tag":88,"props":934,"children":935},{"style":95},[936],{"type":48,"value":4},{"type":43,"tag":88,"props":938,"children":939},{"style":100},[940],{"type":48,"value":941}," remove",{"type":43,"tag":88,"props":943,"children":944},{"style":100},[945],{"type":48,"value":946}," owner\u002Frepo\u002Fpath\n",{"type":43,"tag":88,"props":948,"children":949},{"class":90,"line":133},[950],{"type":43,"tag":88,"props":951,"children":952},{"emptyLinePlaceholder":211},[953],{"type":48,"value":214},{"type":43,"tag":88,"props":955,"children":956},{"class":90,"line":217},[957],{"type":43,"tag":88,"props":958,"children":959},{"style":185},[960],{"type":48,"value":961},"# Stop tracking the source and delete its tracked files\n",{"type":43,"tag":88,"props":963,"children":964},{"class":90,"line":226},[965,969,973,978],{"type":43,"tag":88,"props":966,"children":967},{"style":95},[968],{"type":48,"value":4},{"type":43,"tag":88,"props":970,"children":971},{"style":100},[972],{"type":48,"value":941},{"type":43,"tag":88,"props":974,"children":975},{"style":100},[976],{"type":48,"value":977}," owner\u002Frepo\u002Fpath",{"type":43,"tag":88,"props":979,"children":980},{"style":100},[981],{"type":48,"value":982}," --hard\n",{"type":43,"tag":50,"props":984,"children":985},{},[986,988,993,995,1001],{"type":48,"value":987},"Use a partial URL when it uniquely identifies one source. Inspect\n",{"type":43,"tag":54,"props":989,"children":991},{"className":990},[],[992],{"type":48,"value":66},{"type":48,"value":994}," first when using ",{"type":43,"tag":54,"props":996,"children":998},{"className":997},[],[999],{"type":48,"value":1000},"--hard",{"type":48,"value":725},{"type":43,"tag":70,"props":1003,"children":1005},{"id":1004},"agent-skills-recipe",[1006],{"type":48,"value":1007},"Agent skills recipe",{"type":43,"tag":50,"props":1009,"children":1010},{},[1011],{"type":48,"value":1012},"Agent skills are ordinary GitHub directories. Track project-specific skills\ninside the repository:",{"type":43,"tag":77,"props":1014,"children":1016},{"className":79,"code":1015,"language":81,"meta":82,"style":82},"trackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Fskills\u002Ftree\u002Fmain\u002Fskills .\u002F.cursor\u002Fskills\ngit add trackcn.json .cursor\u002Fskills\n",[1017],{"type":43,"tag":54,"props":1018,"children":1019},{"__ignoreMap":82},[1020,1041],{"type":43,"tag":88,"props":1021,"children":1022},{"class":90,"line":91},[1023,1027,1031,1036],{"type":43,"tag":88,"props":1024,"children":1025},{"style":95},[1026],{"type":48,"value":4},{"type":43,"tag":88,"props":1028,"children":1029},{"style":100},[1030],{"type":48,"value":200},{"type":43,"tag":88,"props":1032,"children":1033},{"style":100},[1034],{"type":48,"value":1035}," https:\u002F\u002Fgithub.com\u002Fowner\u002Fskills\u002Ftree\u002Fmain\u002Fskills",{"type":43,"tag":88,"props":1037,"children":1038},{"style":100},[1039],{"type":48,"value":1040}," .\u002F.cursor\u002Fskills\n",{"type":43,"tag":88,"props":1042,"children":1043},{"class":90,"line":111},[1044,1048,1052,1057],{"type":43,"tag":88,"props":1045,"children":1046},{"style":95},[1047],{"type":48,"value":24},{"type":43,"tag":88,"props":1049,"children":1050},{"style":100},[1051],{"type":48,"value":200},{"type":43,"tag":88,"props":1053,"children":1054},{"style":100},[1055],{"type":48,"value":1056}," trackcn.json",{"type":43,"tag":88,"props":1058,"children":1059},{"style":100},[1060],{"type":48,"value":1061}," .cursor\u002Fskills\n",{"type":43,"tag":50,"props":1063,"children":1064},{},[1065,1067,1073],{"type":48,"value":1066},"Run trackcn from ",{"type":43,"tag":54,"props":1068,"children":1070},{"className":1069},[],[1071],{"type":48,"value":1072},"$HOME",{"type":48,"value":1074}," instead when you want a user-level manifest and\nuser-level skill directory:",{"type":43,"tag":77,"props":1076,"children":1078},{"className":79,"code":1077,"language":81,"meta":82,"style":82},"cd ~\ntrackcn add https:\u002F\u002Fgithub.com\u002Fowner\u002Fskills\u002Ftree\u002Fmain\u002Fskills .\u002F.cursor\u002Fskills\n",[1079],{"type":43,"tag":54,"props":1080,"children":1081},{"__ignoreMap":82},[1082,1096],{"type":43,"tag":88,"props":1083,"children":1084},{"class":90,"line":91},[1085,1091],{"type":43,"tag":88,"props":1086,"children":1088},{"style":1087},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1089],{"type":48,"value":1090},"cd",{"type":43,"tag":88,"props":1092,"children":1093},{"style":100},[1094],{"type":48,"value":1095}," ~\n",{"type":43,"tag":88,"props":1097,"children":1098},{"class":90,"line":111},[1099,1103,1107,1111],{"type":43,"tag":88,"props":1100,"children":1101},{"style":95},[1102],{"type":48,"value":4},{"type":43,"tag":88,"props":1104,"children":1105},{"style":100},[1106],{"type":48,"value":200},{"type":43,"tag":88,"props":1108,"children":1109},{"style":100},[1110],{"type":48,"value":1035},{"type":43,"tag":88,"props":1112,"children":1113},{"style":100},[1114],{"type":48,"value":1040},{"type":43,"tag":50,"props":1116,"children":1117},{},[1118],{"type":48,"value":1119},"Do not hand-edit trackcn-managed skill files. Track a fork or place a local\noverride outside the managed directory when different behavior is required.",{"type":43,"tag":70,"props":1121,"children":1123},{"id":1122},"post-pull-hooks",[1124],{"type":48,"value":1125},"Post-pull hooks",{"type":43,"tag":50,"props":1127,"children":1128},{},[1129],{"type":48,"value":1130},"Attach a shell command that should run after a source changes:",{"type":43,"tag":77,"props":1132,"children":1134},{"className":79,"code":1133,"language":81,"meta":82,"style":82},"trackcn add owner\u002Frepo\u002Ficons .\u002Ficons --post-pull \"npm run build:icons\"\n",[1135],{"type":43,"tag":54,"props":1136,"children":1137},{"__ignoreMap":82},[1138],{"type":43,"tag":88,"props":1139,"children":1140},{"class":90,"line":91},[1141,1145,1149,1154,1159,1164,1169,1174],{"type":43,"tag":88,"props":1142,"children":1143},{"style":95},[1144],{"type":48,"value":4},{"type":43,"tag":88,"props":1146,"children":1147},{"style":100},[1148],{"type":48,"value":200},{"type":43,"tag":88,"props":1150,"children":1151},{"style":100},[1152],{"type":48,"value":1153}," owner\u002Frepo\u002Ficons",{"type":43,"tag":88,"props":1155,"children":1156},{"style":100},[1157],{"type":48,"value":1158}," .\u002Ficons",{"type":43,"tag":88,"props":1160,"children":1161},{"style":100},[1162],{"type":48,"value":1163}," --post-pull",{"type":43,"tag":88,"props":1165,"children":1166},{"style":889},[1167],{"type":48,"value":1168}," \"",{"type":43,"tag":88,"props":1170,"children":1171},{"style":100},[1172],{"type":48,"value":1173},"npm run build:icons",{"type":43,"tag":88,"props":1175,"children":1176},{"style":889},[1177],{"type":48,"value":1178},"\"\n",{"type":43,"tag":50,"props":1180,"children":1181},{},[1182,1184,1189],{"type":48,"value":1183},"Hooks execute shell commands from ",{"type":43,"tag":54,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":48,"value":66},{"type":48,"value":1190},". Inspect unfamiliar manifests\nbefore pulling.",{"type":43,"tag":70,"props":1192,"children":1194},{"id":1193},"authentication",[1195],{"type":48,"value":1196},"Authentication",{"type":43,"tag":50,"props":1198,"children":1199},{},[1200,1202,1208,1210,1216,1218,1224],{"type":48,"value":1201},"Set ",{"type":43,"tag":54,"props":1203,"children":1205},{"className":1204},[],[1206],{"type":48,"value":1207},"TRACKCN_GITHUB_TOKEN",{"type":48,"value":1209},", ",{"type":43,"tag":54,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":48,"value":1215},"GITHUB_TOKEN",{"type":48,"value":1217},", or ",{"type":43,"tag":54,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":48,"value":1223},"GH_TOKEN",{"type":48,"value":1225}," when GitHub API\nrequests need authentication or a higher rate limit:",{"type":43,"tag":77,"props":1227,"children":1229},{"className":79,"code":1228,"language":81,"meta":82,"style":82},"TRACKCN_GITHUB_TOKEN=... trackcn pull\n",[1230],{"type":43,"tag":54,"props":1231,"children":1232},{"__ignoreMap":82},[1233],{"type":43,"tag":88,"props":1234,"children":1235},{"class":90,"line":91},[1236,1240,1245,1250,1255],{"type":43,"tag":88,"props":1237,"children":1238},{"style":443},[1239],{"type":48,"value":1207},{"type":43,"tag":88,"props":1241,"children":1242},{"style":889},[1243],{"type":48,"value":1244},"=",{"type":43,"tag":88,"props":1246,"children":1247},{"style":100},[1248],{"type":48,"value":1249},"...",{"type":43,"tag":88,"props":1251,"children":1252},{"style":95},[1253],{"type":48,"value":1254}," trackcn",{"type":43,"tag":88,"props":1256,"children":1257},{"style":100},[1258],{"type":48,"value":1259}," pull\n",{"type":43,"tag":50,"props":1261,"children":1262},{},[1263],{"type":48,"value":1264},"For interactive use, trackcn can store a browser login outside the manifest:",{"type":43,"tag":77,"props":1266,"children":1268},{"className":79,"code":1267,"language":81,"meta":82,"style":82},"trackcn auth login\ntrackcn auth status\ntrackcn auth logout\n",[1269],{"type":43,"tag":54,"props":1270,"children":1271},{"__ignoreMap":82},[1272,1289,1304],{"type":43,"tag":88,"props":1273,"children":1274},{"class":90,"line":91},[1275,1279,1284],{"type":43,"tag":88,"props":1276,"children":1277},{"style":95},[1278],{"type":48,"value":4},{"type":43,"tag":88,"props":1280,"children":1281},{"style":100},[1282],{"type":48,"value":1283}," auth",{"type":43,"tag":88,"props":1285,"children":1286},{"style":100},[1287],{"type":48,"value":1288}," login\n",{"type":43,"tag":88,"props":1290,"children":1291},{"class":90,"line":111},[1292,1296,1300],{"type":43,"tag":88,"props":1293,"children":1294},{"style":95},[1295],{"type":48,"value":4},{"type":43,"tag":88,"props":1297,"children":1298},{"style":100},[1299],{"type":48,"value":1283},{"type":43,"tag":88,"props":1301,"children":1302},{"style":100},[1303],{"type":48,"value":832},{"type":43,"tag":88,"props":1305,"children":1306},{"class":90,"line":133},[1307,1311,1315],{"type":43,"tag":88,"props":1308,"children":1309},{"style":95},[1310],{"type":48,"value":4},{"type":43,"tag":88,"props":1312,"children":1313},{"style":100},[1314],{"type":48,"value":1283},{"type":43,"tag":88,"props":1316,"children":1317},{"style":100},[1318],{"type":48,"value":1319}," logout\n",{"type":43,"tag":50,"props":1321,"children":1322},{},[1323,1325,1331,1333,1338],{"type":48,"value":1324},"A stored login lives in ",{"type":43,"tag":54,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":48,"value":1330},"~\u002F.trackcn\u002Fauth.json",{"type":48,"value":1332},", never in ",{"type":43,"tag":54,"props":1334,"children":1336},{"className":1335},[],[1337],{"type":48,"value":66},{"type":48,"value":1339},". In CI\nor headless environments, use a token env var instead — the browser flow only\nauto-starts at an interactive terminal.",{"type":43,"tag":70,"props":1341,"children":1343},{"id":1342},"load-this-guide-again",[1344],{"type":48,"value":1345},"Load this guide again",{"type":43,"tag":77,"props":1347,"children":1349},{"className":79,"code":1348,"language":81,"meta":82,"style":82},"trackcn skills get trackcn\ntrackcn skills path trackcn\n",[1350],{"type":43,"tag":54,"props":1351,"children":1352},{"__ignoreMap":82},[1353,1375],{"type":43,"tag":88,"props":1354,"children":1355},{"class":90,"line":91},[1356,1360,1365,1370],{"type":43,"tag":88,"props":1357,"children":1358},{"style":95},[1359],{"type":48,"value":4},{"type":43,"tag":88,"props":1361,"children":1362},{"style":100},[1363],{"type":48,"value":1364}," skills",{"type":43,"tag":88,"props":1366,"children":1367},{"style":100},[1368],{"type":48,"value":1369}," get",{"type":43,"tag":88,"props":1371,"children":1372},{"style":100},[1373],{"type":48,"value":1374}," trackcn\n",{"type":43,"tag":88,"props":1376,"children":1377},{"class":90,"line":111},[1378,1382,1386,1391],{"type":43,"tag":88,"props":1379,"children":1380},{"style":95},[1381],{"type":48,"value":4},{"type":43,"tag":88,"props":1383,"children":1384},{"style":100},[1385],{"type":48,"value":1364},{"type":43,"tag":88,"props":1387,"children":1388},{"style":100},[1389],{"type":48,"value":1390}," path",{"type":43,"tag":88,"props":1392,"children":1393},{"style":100},[1394],{"type":48,"value":1374},{"type":43,"tag":1396,"props":1397,"children":1398},"style",{},[1399],{"type":48,"value":1400},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1402,"total":1565},[1403,1419,1431,1443,1458,1475,1487,1506,1519,1530,1544,1555],{"slug":1404,"name":1404,"fn":1405,"description":1406,"org":1407,"tags":1408,"stars":1416,"repoUrl":1417,"updatedAt":1418},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1409,1412,1413],{"name":1410,"slug":1411,"type":15},"Agents","agents",{"name":17,"slug":18,"type":15},{"name":1414,"slug":1415,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-08-24T03:36:10.45111",{"slug":1420,"name":1420,"fn":1421,"description":1422,"org":1423,"tags":1424,"stars":1416,"repoUrl":1417,"updatedAt":1430},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1425,1426,1429],{"name":17,"slug":18,"type":15},{"name":1427,"slug":1428,"type":15},"AWS","aws",{"name":1414,"slug":1415,"type":15},"2026-07-17T06:08:33.665276",{"slug":1432,"name":1432,"fn":1433,"description":1434,"org":1435,"tags":1436,"stars":1416,"repoUrl":1417,"updatedAt":1442},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1437,1438,1439],{"name":1410,"slug":1411,"type":15},{"name":1414,"slug":1415,"type":15},{"name":1440,"slug":1441,"type":15},"Navigation","navigation","2026-09-03T07:23:50.124609",{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1447,"tags":1448,"stars":1416,"repoUrl":1417,"updatedAt":1457},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1449,1452,1453,1454],{"name":1450,"slug":1451,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":1414,"slug":1415,"type":15},{"name":1455,"slug":1456,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":1459,"name":1459,"fn":1460,"description":1461,"org":1462,"tags":1463,"stars":1416,"repoUrl":1417,"updatedAt":1474},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1464,1465,1468,1471],{"name":1414,"slug":1415,"type":15},{"name":1466,"slug":1467,"type":15},"Debugging","debugging",{"name":1469,"slug":1470,"type":15},"QA","qa",{"name":1472,"slug":1473,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":1476,"name":1476,"fn":1477,"description":1478,"org":1479,"tags":1480,"stars":1416,"repoUrl":1417,"updatedAt":1486},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1481,1482,1483],{"name":1410,"slug":1411,"type":15},{"name":1414,"slug":1415,"type":15},{"name":1484,"slug":1485,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":1488,"name":1488,"fn":1489,"description":1490,"org":1491,"tags":1492,"stars":1416,"repoUrl":1417,"updatedAt":1505},"protected-vercel-deployments","access protected Vercel deployments","Access and test Vercel deployments protected by Vercel Authentication, SSO, or Deployment Protection with agent-browser. Use when a preview or production URL redirects to a Vercel login page, returns a protection 401 or 403, or needs short-lived Trusted Sources OIDC authentication instead of a static bypass secret or public exception.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1493,1496,1499,1502],{"name":1494,"slug":1495,"type":15},"Auth","auth",{"name":1497,"slug":1498,"type":15},"Deployment","deployment",{"name":1500,"slug":1501,"type":15},"Security","security",{"name":1503,"slug":1504,"type":15},"Vercel","vercel","2026-08-24T03:57:05.330407",{"slug":1507,"name":1507,"fn":1508,"description":1509,"org":1510,"tags":1511,"stars":1416,"repoUrl":1417,"updatedAt":1518},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1512,1513,1516],{"name":1414,"slug":1415,"type":15},{"name":1514,"slug":1515,"type":15},"Messaging","messaging",{"name":1517,"slug":1507,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":1520,"name":1520,"fn":1521,"description":1522,"org":1523,"tags":1524,"stars":1416,"repoUrl":1417,"updatedAt":1529},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1525,1526,1527,1528],{"name":17,"slug":18,"type":15},{"name":1414,"slug":1415,"type":15},{"name":1472,"slug":1473,"type":15},{"name":1503,"slug":1504,"type":15},"2026-07-17T06:08:28.349899",{"slug":1531,"name":1531,"fn":1532,"description":1533,"org":1534,"tags":1535,"stars":1416,"repoUrl":1417,"updatedAt":1543},"webmcp-gen","build and validate WebMCP tools","Build and validate experimental WebMCP tools for an existing web page. Use when an agent needs to expose a site's real workflows as page tools, create webmcp.init.js, define deterministic checks, or compare WebMCP with accessibility-tree automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1536,1537,1540],{"name":17,"slug":18,"type":15},{"name":1538,"slug":1539,"type":15},"MCP","mcp",{"name":1541,"slug":1542,"type":15},"Web Development","web-development","2026-09-03T07:48:41.099483",{"slug":1545,"name":1545,"fn":1546,"description":1547,"org":1548,"tags":1549,"stars":1552,"repoUrl":1553,"updatedAt":1554},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1550,1551],{"name":1497,"slug":1498,"type":15},{"name":1503,"slug":1504,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":1556,"name":1556,"fn":1557,"description":1558,"org":1559,"tags":1560,"stars":1552,"repoUrl":1553,"updatedAt":1564},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1561,1562,1563],{"name":20,"slug":21,"type":15},{"name":1497,"slug":1498,"type":15},{"name":1503,"slug":1504,"type":15},"2026-07-17T06:08:41.84179",106,{"items":1567,"total":91},[1568],{"slug":4,"name":4,"fn":5,"description":6,"org":1569,"tags":1570,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1571,1572,1573,1574],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15}]