{"id":"081a178b-5311-4f43-967e-4a599e04ad2c","shortId":"jZ5kHw","kind":"skill","title":"project-docs","tagline":"Project documentation lifecycle for PHP/Laravel and Node/TypeScript/React projects — bootstrapping essential docs, naming and folder conventions, freshness, and cleanup of AI-generated junk and stale files. Use when starting a new project, setting up docs/ structure, auditing mar","description":"# Project Documentation\n\nEnd-to-end documentation lifecycle for PHP/Laravel and Node/TypeScript/React projects. Contains 25 rules across 6 categories covering folder structure, naming conventions, essential files, content quality (including AI-slop detection), cleanup of accumulated junk, and lifecycle. Supports **bootstrap mode** (set up docs in a new project), **audit mode** (find what's missing, stale, bloated, or junk), and **reference mode** (conventions lookup).\n\n## Metadata\n\n- **Version:** 1.0.0\n- **Scope:** PHP / Laravel + Node / TypeScript / React projects\n- **Rule Count:** 25 rules across 6 categories\n- **License:** MIT\n\n## How to Use This Skill — Three Modes\n\n### Mode 1: Bootstrap (new project / missing docs)\n\nWhen the user asks \"set up docs\", \"what docs does this project need\", or starts a new project — walk through the bootstrap steps:\n\n1. **Detect project type** (Laravel? React? Both?) — `composer.json`, `package.json`, `artisan` binary\n2. **Inventory existing docs** — list every `.md` file with its location and last-modified date\n3. **Identify gaps** — compare against the Essential Files checklist; report what's missing\n4. **Propose folder structure** — `docs/` with sub-folders (`architecture/`, `adr/`, `guides/`, `runbooks/`, `archive/`) based on project size\n5. **Offer to scaffold templates** — README, CHANGELOG, LICENSE, CONTRIBUTING, SECURITY, ADR-0001 — generate with user approval, do not auto-create\n6. **Suggest CI gates** — markdown-lint, broken-link checker (lychee), CHANGELOG-on-PR enforcement\n\n### Mode 2: Audit (existing project cleanup)\n\nWhen the user asks \"audit docs\", \"clean up markdown\", or \"what should I delete\" — produce a classified ledger.\n\nFor each `.md` file in the repo:\n- **KEEP** — file is essential and current\n- **UPDATE** — file is essential but stale (e.g., README contradicts current setup)\n- **ARCHIVE** — superseded but historically useful — move to `docs/archive/<year>/`\n- **DELETE** — AI-generated plan files, empty stubs, duplicates, orphaned drafts\n- **MOVE** — wrong location or wrong name (e.g., `MyArchitectureNotes.md` at root → `docs/architecture/overview.md`)\n\nOutput format:\n```\n## Documentation Audit Ledger\n\n| File | Last modified | Verdict | Reason | Action |\n|------|---------------|---------|--------|--------|\n| PLAN.md | 2026-02-14 | DELETE | AI-generated plan, no longer referenced | rm PLAN.md |\n| README.md | 2024-08-01 | UPDATE | Setup steps reference removed Vite v3 | Update install section |\n| docs/old-architecture.md | 2024-11 | ARCHIVE | Superseded by docs/architecture/overview.md | mv to docs/archive/2024/ |\n| MyNotes.md | 2025-09 | DELETE | Personal notes; not project docs | rm MyNotes.md |\n\n## Summary\n- KEEP: X files\n- UPDATE: Y files (top priority: ...)\n- ARCHIVE: Z files\n- DELETE: N files\n- MOVE: M files\n```\n\n**Never auto-delete.** Always surface for user approval first.\n\n### Mode 3: Reference (conventions lookup)\n\nWhen the user asks \"how should I name this\", \"where should this go\", or references the skill in a code-review context — look up the relevant rule(s) in `rules/`.\n\n## When to Apply\n\nReference this skill when:\n- Starting a new Laravel or Node/React project and need a docs baseline\n- Onboarding a project with messy or AI-cluttered markdown files\n- Setting up `docs/` folder structure\n- Naming a new doc file\n- Deciding whether to delete a `PLAN.md` / `TODO.md` / `IMPLEMENTATION-SUMMARY.md`\n- Adding CI checks for markdown quality\n- Reviewing a PR that adds or modifies documentation\n- Quarterly \"docs hygiene\" sweep\n\n## Step 1: Detect Project Type\n\n**Always check the project stack before recommending specifics.** Bootstrap and naming guidance differ slightly per stack.\n\n| Signal | Project Type | Notes |\n|--------|--------------|-------|\n| `composer.json` + `artisan` | Laravel (PHP) | README should cover `composer install`, `php artisan migrate`, `.env.example` |\n| `package.json` (only) | Node / TypeScript / React | README should cover `npm install`, `.nvmrc`, build scripts |\n| Both present | Laravel + Inertia + React | README covers both PHP and Node setup paths |\n\nThe rules themselves are mostly stack-agnostic — README format, ADR structure, naming conventions apply to any project.\n\n## Rule Categories by Priority\n\n| Priority | Category | Impact | Prefix |\n|----------|----------|--------|--------|\n| 1 | Structure | CRITICAL | `structure-` |\n| 2 | Naming | CRITICAL | `naming-` |\n| 3 | Essential Files | HIGH | `essential-` |\n| 4 | Quality | HIGH | `quality-` |\n| 5 | Cleanup | HIGH | `cleanup-` |\n| 6 | Lifecycle | MEDIUM | `lifecycle-` |\n\n## Quick Reference\n\n### 1. Structure (CRITICAL)\n\n- `structure-root-files` — Which files belong at the repo root (README, CHANGELOG, LICENSE, etc.)\n- `structure-docs-folder` — `docs/` as the home for everything beyond root files\n- `structure-subfolders` — Recommended `docs/` layout: architecture/, adr/, guides/, runbooks/, archive/\n\n### 2. Naming (CRITICAL)\n\n- `naming-root-files` — `UPPERCASE.md` for conventional root files\n- `naming-docs-files` — `kebab-case.md` for files under `docs/`\n- `naming-adr-files` — Numbered prefix: `0001-record-architecture-decisions.md`\n- `naming-anti-patterns` — No dates, no `MyNotes.md`, no `tmp/draft/final` markers\n\n### 3. Essential Files (HIGH)\n\n- `essential-readme` — Every project needs a README with purpose, install, usage, license\n- `essential-changelog` — Keep-a-Changelog format; one entry per release\n- `essential-license` — `LICENSE` file (or `LICENSE.md`) at repo root\n- `essential-contributing` — `CONTRIBUTING.md` when accepting external contributors\n- `essential-security` — `SECURITY.md` with vulnerability reporting policy\n\n### 4. Quality (HIGH)\n\n- `quality-conciseness` — Cut bloat; length is a cost, not a virtue\n- `quality-ai-slop` — Detect AI-generated content patterns (filler, sign-offs, generic praise)\n- `quality-headings` — One H1, no skipped levels, descriptive heading text\n- `quality-code-blocks` — Language tags, copy-pasteable commands, no untagged blocks\n- `quality-links` — Descriptive link text (not \"click here\"), relative paths, no broken links\n\n### 5. Cleanup (HIGH)\n\n- `cleanup-ai-junk` — Detect and remove AI-generated plan/summary files\n- `cleanup-duplicates` — Same content in multiple files; consolidate or delete copies\n- `cleanup-orphans` — `.md` files not linked from anywhere; archive or delete\n- `cleanup-empty-stubs` — Files with TBD / TODO / placeholder content only\n\n### 6. Lifecycle (MEDIUM)\n\n- `lifecycle-freshness` — \"Last verified\" dates on architecture docs\n- `lifecycle-archive` — Superseded docs go to `docs/archive/<year>/`\n- `lifecycle-adr-process` — ADR creation triggers and lifecycle (proposed → accepted → superseded)\n- `lifecycle-changelog-discipline` — Add a CHANGELOG entry in the same PR as the change\n\n## Essential Patterns\n\n### Standard folder layout\n\n```\n.\n├── README.md                      # required\n├── CHANGELOG.md                   # required from first release\n├── LICENSE                        # required\n├── CONTRIBUTING.md                # if external contributors\n├── SECURITY.md                    # if internet-facing\n├── CODE_OF_CONDUCT.md             # if open source community\n├── .github/\n│   └── CODEOWNERS                 # team ownership\n└── docs/\n    ├── architecture/\n    │   ├── overview.md\n    │   └── data-model.md\n    ├── adr/\n    │   ├── 0001-record-architecture-decisions.md\n    │   ├── 0002-choose-mysql-over-postgres.md\n    │   └── 0003-adopt-inertia-for-spa.md\n    ├── guides/\n    │   ├── getting-started.md\n    │   ├── deployment.md\n    │   └── local-development.md\n    ├── runbooks/\n    │   ├── deploy-production.md\n    │   └── incident-response.md\n    └── archive/\n        └── 2024/\n            └── old-architecture-notes.md\n```\n\n### File naming at a glance\n\n```\n✓ README.md, CHANGELOG.md, LICENSE, CONTRIBUTING.md, SECURITY.md\n✓ docs/architecture/overview.md\n✓ docs/adr/0007-cache-strategy.md\n✓ docs/guides/deployment.md\n✓ docs/archive/2024/q3-launch-plan.md\n\n✗ Readme.md, Changelog.md          (use UPPERCASE for conventional root files)\n✗ docs/Architecture/Overview.md    (use kebab-case in docs/)\n✗ docs/Notes-2025-09-14.md         (no dates in filenames)\n✗ MyArchitectureThoughts.md        (no first-person, no PascalCase)\n✗ PLAN.md, TODO.md, TEMP.md        (use issue tracker for transient state)\n✗ FINAL-deployment-guide-v2.md     (no draft/final/v2 markers)\n```\n\n### CI: keep markdown honest\n\n```yaml\n# .github/workflows/docs.yml\n- name: Lint markdown\n  uses: DavidAnson/markdownlint-cli2-action@v23\n\n- name: Check links\n  uses: lycheeverse/lychee-action@v2\n  with:\n    args: --no-progress --exclude-mail './**/*.md'\n```\n\n## How to Use\n\nRead individual rule files for detailed conventions and examples:\n\n```\nrules/structure-root-files.md\nrules/naming-adr-files.md\nrules/essential-readme.md\nrules/cleanup-ai-junk.md\nrules/lifecycle-archive.md\n```\n\nEach rule file contains:\n- YAML frontmatter with metadata (title, impact, tags)\n- Brief explanation of why it matters\n- Incorrect example (anti-pattern)\n- Correct example (the convention)\n- Detection / enforcement guidance where applicable\n\n## References\n\n- [Keep a Changelog](https://keepachangelog.com/)\n- [Semantic Versioning](https://semver.org/)\n- [Architecture Decision Records (ADR)](https://adr.github.io/)\n- [Diátaxis — documentation framework](https://diataxis.fr/)\n- [Choose a License](https://choosealicense.com/)\n- [Markdownlint](https://github.com/DavidAnson/markdownlint)\n- [Lychee — link checker](https://github.com/lycheeverse/lychee)\n\n## Full Compiled Document\n\nFor the complete guide with all rules expanded: `AGENTS.md`","tags":["project","docs","agent","skills","asyrafhussin","agent-rules","agent-skills","ai-agents","ai-slop","claude-code","code-quality","code-review"],"capabilities":["skill","source-asyrafhussin","skill-project-docs","topic-agent-rules","topic-agent-skills","topic-ai-agents","topic-ai-slop","topic-claude-code","topic-code-quality","topic-code-review","topic-codex","topic-cursor","topic-laravel","topic-nodejs","topic-react"],"categories":["agent-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/AsyrafHussin/agent-skills/project-docs","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add AsyrafHussin/agent-skills","source_repo":"https://github.com/AsyrafHussin/agent-skills","install_from":"skills.sh"}},"qualityScore":"0.469","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 39 github stars · SKILL.md body (9,623 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:58:25.195Z","embedding":null,"createdAt":"2026-05-16T18:57:14.821Z","updatedAt":"2026-05-18T18:58:25.195Z","lastSeenAt":"2026-05-18T18:58:25.195Z","tsv":"'-0001':231 '-01':364 '-02':349 '-08':363 '-09':387 '-11':377 '-14':350 '/)':1130,1135,1142,1148,1154 '/davidanson/markdownlint)':1158 '/lycheeverse/lychee)':1164 '0001-record-architecture-decisions.md':712,982 '0002-choose-mysql-over-postgres.md':983 '0003-adopt-inertia-for-spa.md':984 '1':133,162,527,616,643 '1.0.0':108 '2':173,259,620,685 '2024':362,376,993 '2025':386 '2026':348 '25':56,118 '3':189,425,624,724 '4':202,629,779 '5':220,633,848 '6':59,121,241,637,898 'accept':768,928 'accumul':77 'across':58,120 'action':346 'ad':508 'add':518,934 'adr':212,230,600,681,708,920,922,981,1139 'adr.github.io':1141 'adr.github.io/)':1140 'agents.md':1176 'agnost':597 'ai':24,72,316,353,486,796,800,853,859 'ai-clutt':485 'ai-gener':23,315,352,799,858 'ai-slop':71 'alway':418,531 'anti':715,1113 'anti-pattern':1112 'anywher':883 'appli':462,604 'applic':1123 'approv':235,422 'architectur':211,680,908,978,1136 'archiv':215,306,378,405,684,884,912,992 'arg':1068 'artisan':171,552,561 'ask':142,267,432 'audit':40,91,260,268,339 'auto':239,416 'auto-cr':238 'auto-delet':415 'base':216 'baselin':478 'belong':652 'beyond':671 'binari':172 'bloat':98,786 'block':824,833 'bootstrap':12,82,134,160,539 'brief':1104 'broken':249,846 'broken-link':248 'build':575 'case':1021 'categori':60,122,609,613 'chang':944 'changelog':226,254,658,743,747,932,936,1127 'changelog-on-pr':253 'changelog.md':952,1001,1010 'check':510,532,1062 'checker':251,1161 'checklist':197 'choos':1149 'choosealicense.com':1153 'choosealicense.com/)':1152 'ci':243,509,1049 'classifi':280 'clean':270 'cleanup':21,75,263,634,636,849,852,864,876,888 'cleanup-ai-junk':851 'cleanup-dupl':863 'cleanup-empty-stub':887 'cleanup-orphan':875 'click':841 'clutter':487 'code':449,823 'code-review':448 'code_of_conduct.md':968 'codeown':974 'command':830 'communiti':972 'compar':192 'compil':1166 'complet':1170 'compos':558 'composer.json':169,551 'concis':784 'consolid':871 'contain':55,1096 'content':68,802,867,896 'context':451 'contradict':303 'contribut':228,765 'contributing.md':766,959,1003 'contributor':770,962 'convent':18,65,104,427,603,694,1014,1085,1118 'copi':828,874 'copy-past':827 'correct':1115 'cost':790 'count':117 'cover':61,557,571,583 'creat':240 'creation':923 'critic':618,622,645,687 'current':294,304 'cut':785 'data-model.md':980 'date':188,718,906,1026 'davidanson/markdownlint-cli2-action':1059 'decid':500 'decis':1137 'delet':277,314,351,388,408,417,503,873,886 'deploy-production.md':990 'deployment.md':987 'descript':818,837 'detail':1084 'detect':74,163,528,798,855,1119 'diataxis.fr':1147 'diataxis.fr/)':1146 'differ':543 'disciplin':933 'diátaxi':1143 'doc':3,14,38,86,138,145,147,176,206,269,393,477,492,498,523,663,665,678,699,705,909,914,977,1023 'docs/adr/0007-cache-strategy.md':1006 'docs/architecture/overview.md':335,381,1005,1017 'docs/archive':313,917 'docs/archive/2024':384 'docs/archive/2024/q3-launch-plan.md':1008 'docs/guides/deployment.md':1007 'docs/notes-2025-09-14.md':1024 'docs/old-architecture.md':375 'document':5,43,48,338,521,1144,1167 'draft':324 'draft/final/v2':1047 'duplic':322,865 'e.g':301,331 'empti':320,889 'end':45,47 'end-to-end':44 'enforc':257,1120 'entri':750,937 'env.example':563 'essenti':13,66,195,292,298,625,628,725,729,742,754,764,772,945 'essential-changelog':741 'essential-contribut':763 'essential-licens':753 'essential-readm':728 'essential-secur':771 'etc':660 'everi':178,731 'everyth':670 'exampl':1087,1111,1116 'exclud':1073 'exclude-mail':1072 'exist':175,261 'expand':1175 'explan':1105 'extern':769,961 'face':967 'file':29,67,180,196,285,290,296,319,341,399,402,407,410,413,489,499,626,649,651,673,691,696,700,703,709,726,757,862,870,879,891,995,1016,1082,1095 'filenam':1028 'filler':804 'final-deployment-guide-v2.md':1045 'find':93 'first':423,955,1032 'first-person':1031 'folder':17,62,204,210,493,664,948 'format':337,599,748 'framework':1145 'fresh':19,903 'frontmatt':1098 'full':1165 'gap':191 'gate':244 'generat':25,232,317,354,801,860 'generic':808 'getting-started.md':986 'github':973 'github.com':1157,1163 'github.com/davidanson/markdownlint)':1156 'github.com/lycheeverse/lychee)':1162 'github/workflows/docs.yml':1054 'glanc':999 'go':441,915 'guid':213,682,985,1171 'guidanc':542,1121 'h1':814 'head':812,819 'high':627,631,635,727,781,850 'histor':309 'home':668 'honest':1052 'hygien':524 'identifi':190 'impact':614,1102 'implementation-summary.md':507 'incident-response.md':991 'includ':70 'incorrect':1110 'individu':1080 'inertia':580 'instal':373,559,573,738 'internet':966 'internet-fac':965 'inventori':174 'issu':1040 'junk':26,78,100,854 'kebab':1020 'kebab-cas':1019 'kebab-case.md':701 'keep':289,397,745,1050,1125 'keep-a-changelog':744 'keepachangelog.com':1129 'keepachangelog.com/)':1128 'languag':825 'laravel':111,166,470,553,579 'last':186,342,904 'last-modifi':185 'layout':679,949 'ledger':281,340 'length':787 'level':817 'licens':123,227,659,740,755,756,957,1002,1151 'license.md':759 'lifecycl':6,49,80,638,640,899,902,911,919,926,931 'lifecycle-adr-process':918 'lifecycle-arch':910 'lifecycle-changelog-disciplin':930 'lifecycle-fresh':901 'link':250,836,838,847,881,1063,1160 'lint':247,1056 'list':177 'local-development.md':988 'locat':183,327 'longer':357 'look':452 'lookup':105,428 'lyche':252,1159 'lycheeverse/lychee-action':1065 'm':412 'mail':1074 'mar':41 'markdown':246,272,488,512,1051,1057 'markdown-lint':245 'markdownlint':1155 'marker':723,1048 'matter':1109 'md':179,284,878,1075 'medium':639,900 'messi':483 'metadata':106,1100 'migrat':562 'miss':96,137,201 'mit':124 'mode':83,92,103,131,132,258,424 'modifi':187,343,520 'most':594 'move':311,325,411 'multipl':869 'mv':382 'myarchitecturenotes.md':332 'myarchitecturethoughts.md':1029 'mynotes.md':385,395,720 'n':409 'name':15,64,330,436,495,541,602,621,623,686,689,698,707,714,996,1055,1061 'naming-adr-fil':706 'naming-anti-pattern':713 'naming-docs-fil':697 'naming-root-fil':688 'need':151,475,733 'never':414 'new':34,89,135,155,469,497 'no-progress':1069 'node':112,566,587 'node/react':472 'node/typescript/react':10,53 'note':390,550 'npm':572 'number':710 'nvmrc':574 'off':807 'offer':221 'old-architecture-notes.md':994 'onboard':479 'one':749,813 'open':970 'orphan':323,877 'output':336 'overview.md':979 'ownership':976 'package.json':170,564 'pascalcas':1035 'pasteabl':829 'path':589,844 'pattern':716,803,946,1114 'per':545,751 'person':389,1033 'php':110,554,560,585 'php/laravel':8,51 'placehold':895 'plan':318,355 'plan.md':347,360,505,1036 'plan/summary':861 'polici':778 'pr':256,516,941 'prais':809 'prefix':615,711 'present':578 'prioriti':404,611,612 'process':921 'produc':278 'progress':1071 'project':2,4,11,35,42,54,90,115,136,150,156,164,218,262,392,473,481,529,534,548,607,732 'project-doc':1 'propos':203,927 'purpos':737 'qualiti':69,513,630,632,780,783,795,811,822,835 'quality-ai-slop':794 'quality-code-block':821 'quality-concis':782 'quality-head':810 'quality-link':834 'quarter':522 'quick':641 'react':114,167,568,581 'read':1079 'readm':225,302,555,569,582,598,657,730,735 'readme.md':361,950,1000,1009 'reason':345 'recommend':537,677 'record':1138 'refer':102,368,426,443,463,642,1124 'referenc':358 'relat':843 'releas':752,956 'relev':455 'remov':369,857 'repo':288,655,761 'report':198,777 'requir':951,953,958 'review':450,514 'rm':359,394 'root':334,648,656,672,690,695,762,1015 'rule':57,116,119,456,459,591,608,1081,1094,1174 'rules/cleanup-ai-junk.md':1091 'rules/essential-readme.md':1090 'rules/lifecycle-archive.md':1092 'rules/naming-adr-files.md':1089 'rules/structure-root-files.md':1088 'runbook':214,683,989 'scaffold':223 'scope':109 'script':576 'section':374 'secur':229,773 'security.md':774,963,1004 'semant':1131 'semver.org':1134 'semver.org/)':1133 'set':36,84,143,490 'setup':305,366,588 'sign':806 'sign-off':805 'signal':547 'size':219 'skill':129,445,465 'skill-project-docs' 'skip':816 'slight':544 'slop':73,797 'sourc':971 'source-asyrafhussin' 'specif':538 'stack':535,546,596 'stack-agnost':595 'stale':28,97,300 'standard':947 'start':32,153,467 'state':1044 'step':161,367,526 'structur':39,63,205,494,601,617,619,644,647,662,675 'structure-docs-fold':661 'structure-root-fil':646 'structure-subfold':674 'stub':321,890 'sub':209 'sub-fold':208 'subfold':676 'suggest':242 'summari':396 'supersed':307,379,913,929 'support':81 'surfac':419 'sweep':525 'tag':826,1103 'tbd':893 'team':975 'temp.md':1038 'templat':224 'text':820,839 'three':130 'titl':1101 'tmp/draft/final':722 'todo':894 'todo.md':506,1037 'top':403 'topic-agent-rules' 'topic-agent-skills' 'topic-ai-agents' 'topic-ai-slop' 'topic-claude-code' 'topic-code-quality' 'topic-code-review' 'topic-codex' 'topic-cursor' 'topic-laravel' 'topic-nodejs' 'topic-react' 'tracker':1041 'transient':1043 'trigger':924 'type':165,530,549 'typescript':113,567 'untag':832 'updat':295,365,372,400 'uppercas':1012 'uppercase.md':692 'usag':739 'use':30,127,310,1011,1018,1039,1058,1064,1078 'user':141,234,266,421,431 'v2':1066 'v23':1060 'v3':371 'verdict':344 'verifi':905 'version':107,1132 'virtu':793 'vite':370 'vulner':776 'walk':157 'whether':501 'wrong':326,329 'x':398 'y':401 'yaml':1053,1097 'z':406","prices":[{"id":"150b5811-fb21-4d0b-9269-0496aa5eda2f","listingId":"081a178b-5311-4f43-967e-4a599e04ad2c","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"AsyrafHussin","category":"agent-skills","install_from":"skills.sh"},"createdAt":"2026-05-16T18:57:14.821Z"}],"sources":[{"listingId":"081a178b-5311-4f43-967e-4a599e04ad2c","source":"github","sourceId":"AsyrafHussin/agent-skills/project-docs","sourceUrl":"https://github.com/AsyrafHussin/agent-skills/tree/main/skills/project-docs","isPrimary":false,"firstSeenAt":"2026-05-16T18:57:14.821Z","lastSeenAt":"2026-05-18T18:58:25.195Z"}],"details":{"listingId":"081a178b-5311-4f43-967e-4a599e04ad2c","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"AsyrafHussin","slug":"project-docs","github":{"repo":"AsyrafHussin/agent-skills","stars":39,"topics":["agent-rules","agent-skills","ai-agents","ai-slop","claude-code","code-quality","code-review","codex","cursor","laravel","nodejs","react","technical-debt","typescript","windsurf"],"license":"mit","html_url":"https://github.com/AsyrafHussin/agent-skills","pushed_at":"2026-05-16T19:24:02Z","description":"Agent skills for AI coding agents (Claude Code, Cursor, Codex, Windsurf) — Laravel, React, TypeScript, MySQL, code quality, technical debt, documentation, and security.","skill_md_sha":"1d56d3d6273d042a42d470cee22cfe8380f2a4e0","skill_md_path":"skills/project-docs/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/AsyrafHussin/agent-skills/tree/main/skills/project-docs"},"layout":"multi","source":"github","category":"agent-skills","frontmatter":{"name":"project-docs","license":"MIT","description":"Project documentation lifecycle for PHP/Laravel and Node/TypeScript/React projects — bootstrapping essential docs, naming and folder conventions, freshness, and cleanup of AI-generated junk and stale files. Use when starting a new project, setting up docs/ structure, auditing markdown files, cleaning up the docs folder, or deciding which docs to keep, archive, or delete. Triggers on \"set up docs\", \"audit docs\", \"clean up markdown\", \"what docs does this project need\", \"organize docs folder\", \"find stale docs\"."},"skills_sh_url":"https://skills.sh/AsyrafHussin/agent-skills/project-docs"},"updatedAt":"2026-05-18T18:58:25.195Z"}}