{"id":"5e30ddfb-ecc9-4749-9465-40839cad63b5","shortId":"dusNzB","kind":"skill","title":"context-driven-development","tagline":"Guide for implementing and maintaining context as a managed artifact alongside code, enabling consistent AI interactions and team alignment through structured project documentation.","description":"# Context-Driven Development\n\nGuide for implementing and maintaining context as a managed artifact alongside code, enabling consistent AI interactions and team alignment through structured project documentation.\n\n## Do not use this skill when\n\n- The task is unrelated to context-driven development\n- You need a different domain or tool outside this scope\n\n## Instructions\n\n- Clarify goals, constraints, and required inputs.\n- Apply relevant best practices and validate outcomes.\n- Provide actionable steps and verification.\n- If detailed examples are required, open `resources/implementation-playbook.md`.\n\n## Use this skill when\n\n- Setting up new projects with Conductor\n- Understanding the relationship between context artifacts\n- Maintaining consistency across AI-assisted development sessions\n- Onboarding team members to an existing Conductor project\n- Deciding when to update context documents\n- Managing greenfield vs brownfield project contexts\n\n## Core Philosophy\n\nContext-Driven Development treats project context as a first-class artifact managed alongside code. Instead of relying on ad-hoc prompts or scattered documentation, establish a persistent, structured foundation that informs all AI interactions.\n\nKey principles:\n\n1. **Context precedes code**: Define what you're building and how before implementation\n2. **Living documentation**: Context artifacts evolve with the project\n3. **Single source of truth**: One canonical location for each type of information\n4. **AI alignment**: Consistent context produces consistent AI behavior\n\n## The Workflow\n\nFollow the **Context → Spec & Plan → Implement** workflow:\n\n1. **Context Phase**: Establish or verify project context artifacts exist and are current\n2. **Specification Phase**: Define requirements and acceptance criteria for work units\n3. **Planning Phase**: Break specifications into phased, actionable tasks\n4. **Implementation Phase**: Execute tasks following established workflow patterns\n\n## Artifact Relationships\n\n### product.md - Defines WHAT and WHY\n\nPurpose: Captures product vision, goals, target users, and business context.\n\nContents:\n\n- Product name and one-line description\n- Problem statement and solution approach\n- Target user personas\n- Core features and capabilities\n- Success metrics and KPIs\n- Product roadmap (high-level)\n\nUpdate when:\n\n- Product vision or goals change\n- New major features are planned\n- Target audience shifts\n- Business priorities evolve\n\n### product-guidelines.md - Defines HOW to Communicate\n\nPurpose: Establishes brand voice, messaging standards, and communication patterns.\n\nContents:\n\n- Brand voice and tone guidelines\n- Terminology and glossary\n- Error message conventions\n- User-facing copy standards\n- Documentation style\n\nUpdate when:\n\n- Brand guidelines change\n- New terminology is introduced\n- Communication patterns need refinement\n\n### tech-stack.md - Defines WITH WHAT\n\nPurpose: Documents technology choices, dependencies, and architectural decisions.\n\nContents:\n\n- Primary languages and frameworks\n- Key dependencies with versions\n- Infrastructure and deployment targets\n- Development tools and environment\n- Testing frameworks\n- Code quality tools\n\nUpdate when:\n\n- Adding new dependencies\n- Upgrading major versions\n- Changing infrastructure\n- Adopting new tools or patterns\n\n### workflow.md - Defines HOW to Work\n\nPurpose: Establishes development practices, quality gates, and team workflows.\n\nContents:\n\n- Development methodology (TDD, etc.)\n- Git workflow and commit conventions\n- Code review requirements\n- Testing requirements and coverage targets\n- Quality assurance gates\n- Deployment procedures\n\nUpdate when:\n\n- Team practices evolve\n- Quality standards change\n- New workflow patterns are adopted\n\n### tracks.md - Tracks WHAT'S HAPPENING\n\nPurpose: Registry of all work units with status and metadata.\n\nContents:\n\n- Active tracks with current status\n- Completed tracks with completion dates\n- Track metadata (type, priority, assignee)\n- Links to individual track directories\n\nUpdate when:\n\n- New tracks are created\n- Track status changes\n- Tracks are completed or archived\n\n## Context Maintenance Principles\n\n### Keep Artifacts Synchronized\n\nEnsure changes in one artifact reflect in related documents:\n\n- New feature in product.md → Update tech-stack.md if new dependencies needed\n- Completed track → Update product.md to reflect new capabilities\n- Workflow change → Update all affected track plans\n\n### Update tech-stack.md When Adding Dependencies\n\nBefore adding any new dependency:\n\n1. Check if existing dependencies solve the need\n2. Document the rationale for new dependencies\n3. Add version constraints\n4. Note any configuration requirements\n\n### Update product.md When Features Complete\n\nAfter completing a feature track:\n\n1. Move feature from \"planned\" to \"implemented\" in product.md\n2. Update any affected success metrics\n3. Document any scope changes from original plan\n\n### Verify Context Before Implementation\n\nBefore starting any track:\n\n1. Read all context artifacts\n2. Flag any outdated information\n3. Propose updates before proceeding\n4. Confirm context accuracy with stakeholders\n\n## Greenfield vs Brownfield Handling\n\n### Greenfield Projects (New)\n\nFor new projects:\n\n1. Run `/conductor:setup` to create all artifacts interactively\n2. Answer questions about product vision, tech preferences, and workflow\n3. Generate initial style guides for chosen languages\n4. Create empty tracks registry\n\nCharacteristics:\n\n- Full control over context structure\n- Define standards before code exists\n- Establish patterns early\n\n### Brownfield Projects (Existing)\n\nFor existing codebases:\n\n1. Run `/conductor:setup` with existing codebase detection\n2. System analyzes existing code, configs, and documentation\n3. Pre-populate artifacts based on discovered patterns\n4. Review and refine generated context\n\nCharacteristics:\n\n- Extract implicit context from existing code\n- Reconcile existing patterns with desired patterns\n- Document technical debt and modernization plans\n- Preserve working patterns while establishing standards\n\n## Benefits\n\n### Team Alignment\n\n- New team members onboard faster with explicit context\n- Consistent terminology and conventions across the team\n- Shared understanding of product goals and technical decisions\n\n### AI Consistency\n\n- AI assistants produce aligned outputs across sessions\n- Reduced need to re-explain context in each interaction\n- Predictable behavior based on documented standards\n\n### Institutional Memory\n\n- Decisions and rationale are preserved\n- Context survives team changes\n- Historical context informs future decisions\n\n### Quality Assurance\n\n- Standards are explicit and verifiable\n- Deviations from context are detectable\n- Quality gates are documented and enforceable\n\n## Directory Structure\n\n```\nconductor/\n├── index.md              # Navigation hub linking all artifacts\n├── product.md            # Product vision and goals\n├── product-guidelines.md # Communication standards\n├── tech-stack.md         # Technology preferences\n├── workflow.md           # Development practices\n├── tracks.md             # Work unit registry\n├── setup_state.json      # Resumable setup state\n├── code_styleguides/     # Language-specific conventions\n│   ├── python.md\n│   ├── typescript.md\n│   └── ...\n└── tracks/\n    └── <track-id>/\n        ├── spec.md\n        ├── plan.md\n        ├── metadata.json\n        └── index.md\n```\n\n## Context Lifecycle\n\n1. **Creation**: Initial setup via `/conductor:setup`\n2. **Validation**: Verify before each track\n3. **Evolution**: Update as project grows\n4. **Synchronization**: Keep artifacts aligned\n5. **Archival**: Document historical decisions\n\n## Context Validation Checklist\n\nBefore starting implementation on any track, validate context:\n\n### Product Context\n\n- [ ] product.md reflects current product vision\n- [ ] Target users are accurately described\n- [ ] Feature list is up to date\n- [ ] Success metrics are defined\n\n### Technical Context\n\n- [ ] tech-stack.md lists all current dependencies\n- [ ] Version numbers are accurate\n- [ ] Infrastructure targets are correct\n- [ ] Development tools are documented\n\n### Workflow Context\n\n- [ ] workflow.md describes current practices\n- [ ] Quality gates are defined\n- [ ] Coverage targets are specified\n- [ ] Commit conventions are documented\n\n### Track Context\n\n- [ ] tracks.md shows all active work\n- [ ] No stale or abandoned tracks\n- [ ] Dependencies between tracks are noted\n\n## Common Anti-Patterns\n\nAvoid these context management mistakes:\n\n### Stale Context\n\nProblem: Context documents become outdated and misleading.\nSolution: Update context as part of each track's completion process.\n\n### Context Sprawl\n\nProblem: Information scattered across multiple locations.\nSolution: Use the defined artifact structure; resist creating new document types.\n\n### Implicit Context\n\nProblem: Relying on knowledge not captured in artifacts.\nSolution: If you reference something repeatedly, add it to the appropriate artifact.\n\n### Context Hoarding\n\nProblem: One person maintains context without team input.\nSolution: Review context artifacts in pull requests; make updates collaborative.\n\n### Over-Specification\n\nProblem: Context becomes so detailed it's impossible to maintain.\nSolution: Keep artifacts focused on decisions that affect AI behavior and team alignment.\n\n## Integration with Development Tools\n\n### IDE Integration\n\nConfigure your IDE to display context files prominently:\n\n- Pin conductor/product.md for quick reference\n- Add tech-stack.md to project notes\n- Create snippets for common patterns from style guides\n\n### Git Hooks\n\nConsider pre-commit hooks that:\n\n- Warn when dependencies change without tech-stack.md update\n- Remind to update product.md when feature branches merge\n- Validate context artifact syntax\n\n### CI/CD Integration\n\nInclude context validation in pipelines:\n\n- Check tech-stack.md matches actual dependencies\n- Verify links in context documents resolve\n- Ensure tracks.md status matches git branch state\n\n## Session Continuity\n\nConductor supports multi-session development through context persistence:\n\n### Starting a New Session\n\n1. Read index.md to orient yourself\n2. Check tracks.md for active work\n3. Review relevant track's plan.md for current task\n4. Verify context artifacts are current\n\n### Ending a Session\n\n1. Update plan.md with current progress\n2. Note any blockers or decisions made\n3. Commit in-progress work with clear status\n4. Update tracks.md if status changed\n\n### Handling Interruptions\n\nIf interrupted mid-task:\n\n1. Mark task as `[~]` with note about stopping point\n2. Commit work-in-progress to feature branch\n3. Document any uncommitted decisions in plan.md\n\n## Best Practices\n\n1. **Read context first**: Always read relevant artifacts before starting work\n2. **Small updates**: Make incremental context changes, not massive rewrites\n3. **Link decisions**: Reference context when making implementation choices\n4. **Version context**: Commit context changes alongside code changes\n5. **Review context**: Include context artifact reviews in code reviews\n6. **Validate regularly**: Run context validation checklist before major work\n7. **Communicate changes**: Notify team when context artifacts change significantly\n8. **Preserve history**: Use git to track context evolution over time\n9. **Question staleness**: If context feels wrong, investigate and update\n10. **Keep it actionable**: Every context item should inform a decision or behavior\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["context","driven","development","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding"],"capabilities":["skill","source-sickn33","skill-context-driven-development","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/context-driven-development","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34831 github stars · SKILL.md body (11,780 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-04-24T06:50:57.290Z","embedding":null,"createdAt":"2026-04-18T21:35:06.407Z","updatedAt":"2026-04-24T06:50:57.290Z","lastSeenAt":"2026-04-24T06:50:57.290Z","tsv":"'/conductor':693,745,935 '1':191,244,595,629,660,691,743,930,1261,1291,1326,1353 '10':1443 '2':204,257,603,638,665,700,751,937,1267,1297,1335,1364 '3':213,268,610,644,670,710,759,943,1273,1304,1344,1374 '4':226,277,614,675,718,768,949,1282,1313,1383 '5':954,1392 '6':1402 '7':1412 '8':1422 '9':1433 'abandon':1039 'accept':263 'accur':980,1002 'accuraci':678 'across':124,814,832,1080 'action':95,275,1446 'activ':511,1034,1271 'actual':1231 'ad':173,432,588,591 'ad-hoc':172 'add':611,1110,1181 'adopt':440,494 'affect':582,641,1156 'ai':19,46,126,187,227,233,825,827,1157 'ai-assist':125 'align':23,50,228,801,830,953,1161 'alongsid':15,42,166,1389 'alway':1357 'analyz':753 'answer':701 'anti':1048 'anti-pattern':1047 'appli':87 'approach':315 'appropri':1114 'architectur':406 'archiv':544,955 'artifact':14,41,121,164,208,252,286,549,555,664,698,763,892,952,1087,1103,1115,1129,1151,1219,1285,1360,1397,1419 'ask':1489 'assigne':525 'assist':127,828 'assur':478,867 'audienc':345 'avoid':1050 'base':764,846 'becom':1060,1141 'behavior':234,845,1158,1455 'benefit':799 'best':89,1351 'blocker':1300 'boundari':1497 'branch':1215,1244,1343 'brand':357,365,385 'break':271 'brownfield':147,683,737 'build':199 'busi':301,347 'canon':219 'capabl':322,577 'captur':294,1101 'chang':338,387,438,489,539,552,579,648,860,1205,1318,1370,1388,1391,1414,1420 'characterist':723,774 'check':596,1228,1268 'checklist':961,1408 'choic':403,1382 'chosen':716 'ci/cd':1221 'clarif':1491 'clarifi':81 'class':163 'clear':1311,1464 'code':16,43,167,194,427,469,732,755,780,915,1390,1400 'codebas':742,749 'collabor':1135 'commit':467,1025,1199,1305,1336,1386 'common':1046,1189 'communic':354,362,392,899,1413 'complet':516,519,542,570,623,625,1073 'conductor':115,136,886,1248 'conductor/product.md':1177 'config':756 'configur':617,1168 'confirm':676 'consid':1196 'consist':18,45,123,229,232,810,826 'constraint':83,613 'content':303,364,408,459,510 'context':2,10,29,37,67,120,142,149,153,158,192,207,230,239,245,251,302,545,653,663,677,727,773,777,809,840,857,862,875,928,959,969,971,993,1012,1030,1052,1056,1058,1066,1075,1095,1116,1122,1128,1140,1173,1218,1224,1236,1255,1284,1355,1369,1378,1385,1387,1394,1396,1406,1418,1429,1437,1448 'context-driven':28,66,152 'context-driven-develop':1 'continu':1247 'control':725 'convent':375,468,813,920,1026 'copi':379 'core':150,319 'correct':1006 'coverag':475,1021 'creat':536,696,719,1090,1186 'creation':931 'criteria':264,1500 'current':256,514,974,997,1015,1280,1287,1295 'date':520,987 'debt':789 'decid':138 'decis':407,824,852,865,958,1154,1302,1348,1376,1453 'defin':195,260,289,351,397,446,729,991,1020,1086 'depend':404,414,434,568,589,594,599,609,998,1041,1204,1232 'deploy':419,480 'describ':981,1014,1468 'descript':310 'desir':785 'detail':100,1143 'detect':750,877 'develop':4,31,69,128,155,421,452,460,905,1007,1164,1253 'deviat':873 'differ':73 'directori':530,884 'discov':766 'display':1172 'document':27,54,143,178,206,381,401,559,604,645,758,787,848,881,956,1010,1028,1059,1092,1237,1345 'domain':74 'driven':3,30,68,154 'earli':736 'empti':720 'enabl':17,44 'end':1288 'enforc':883 'ensur':551,1239 'environ':424,1480 'environment-specif':1479 'error':373 'establish':179,247,283,356,451,734,797 'etc':463 'everi':1447 'evolut':944,1430 'evolv':209,349,486 'exampl':101 'execut':280 'exist':135,253,598,733,739,741,748,754,779,782 'expert':1485 'explain':839 'explicit':808,870 'extract':775 'face':378 'faster':806 'featur':320,341,561,622,627,631,982,1214,1342 'feel':1438 'file':1174 'first':162,1356 'first-class':161 'flag':666 'focus':1152 'follow':237,282 'foundat':183 'framework':412,426 'full':724 'futur':864 'gate':455,479,879,1018 'generat':711,772 'git':464,1194,1243,1426 'glossari':372 'goal':82,297,337,821,897 'greenfield':145,681,685 'grow':948 'guid':5,32,714,1193 'guidelin':369,386 'handl':684,1319 'happen':499 'high':330 'high-level':329 'histor':861,957 'histori':1424 'hoard':1117 'hoc':174 'hook':1195,1200 'hub':889 'ide':1166,1170 'implement':7,34,203,242,278,635,655,964,1381 'implicit':776,1094 'imposs':1146 'in-progress':1306 'includ':1223,1395 'increment':1368 'index.md':887,927,1263 'individu':528 'inform':185,225,669,863,1078,1451 'infrastructur':417,439,1003 'initi':712,932 'input':86,1125,1494 'instead':168 'institut':850 'instruct':80 'integr':1162,1167,1222 'interact':20,47,188,699,843 'interrupt':1320,1322 'introduc':391 'investig':1440 'item':1449 'keep':548,951,1150,1444 'key':189,413 'knowledg':1099 'kpis':326 'languag':410,717,918 'language-specif':917 'level':331 'lifecycl':929 'limit':1456 'line':309 'link':526,890,1234,1375 'list':983,995 'live':205 'locat':220,1082 'made':1303 'maintain':9,36,122,1121,1148 'mainten':546 'major':340,436,1410 'make':1133,1367,1380 'manag':13,40,144,165,1053 'mark':1327 'massiv':1372 'match':1230,1242,1465 'member':132,804 'memori':851 'merg':1216 'messag':359,374 'metadata':509,522 'metadata.json':926 'methodolog':461 'metric':324,643,989 'mid':1324 'mid-task':1323 'mislead':1063 'miss':1502 'mistak':1054 'modern':791 'move':630 'multi':1251 'multi-sess':1250 'multipl':1081 'name':305 'navig':888 'need':71,394,569,602,835 'new':112,339,388,433,441,490,533,560,567,576,593,608,687,689,802,1091,1259 'note':615,1045,1185,1298,1331 'notifi':1415 'number':1000 'onboard':130,805 'one':218,308,554,1119 'one-lin':307 'open':104 'orient':1265 'origin':650 'outcom':93 'outdat':668,1061 'output':831,1474 'outsid':77 'over-specif':1136 'part':1068 'pattern':285,363,393,444,492,735,767,783,786,795,1049,1190 'permiss':1495 'persist':181,1256 'person':1120 'persona':318 'phase':246,259,270,274,279 'philosophi':151 'pin':1176 'pipelin':1227 'plan':241,269,343,584,633,651,792 'plan.md':925,1278,1293,1350 'point':1334 'popul':762 'practic':90,453,485,906,1016,1352 'pre':761,1198 'pre-commit':1197 'pre-popul':760 'preced':193 'predict':844 'prefer':707,903 'preserv':793,856,1423 'primari':409 'principl':190,547 'prioriti':348,524 'problem':311,1057,1077,1096,1118,1139 'procedur':481 'proceed':674 'process':1074 'produc':231,829 'product':295,304,327,334,704,820,894,970,975 'product-guidelines.md':350,898 'product.md':288,563,573,620,637,893,972,1212 'progress':1296,1308,1340 'project':26,53,113,137,148,157,212,250,686,690,738,947,1184 'promin':1175 'prompt':175 'propos':671 'provid':94 'pull':1131 'purpos':293,355,400,450,500 'python.md':921 'qualiti':428,454,477,487,866,878,1017 'question':702,1434 'quick':1179 'rational':606,854 're':198,838 're-explain':837 'read':661,1262,1354,1358 'reconcil':781 'reduc':834 'refer':1107,1180,1377 'refin':395,771 'reflect':556,575,973 'registri':501,722,910 'regular':1404 'relat':558 'relationship':118,287 'relev':88,1275,1359 'reli':170,1097 'remind':1209 'repeat':1109 'request':1132 'requir':85,103,261,471,473,618,1493 'resist':1089 'resolv':1238 'resources/implementation-playbook.md':105 'resum':912 'review':470,769,1127,1274,1393,1398,1401,1486 'rewrit':1373 'roadmap':328 'run':692,744,1405 'safeti':1496 'scatter':177,1079 'scope':79,647,1467 'session':129,833,1246,1252,1260,1290 'set':110 'setup':694,746,913,933,936 'setup_state.json':911 'share':817 'shift':346 'show':1032 'signific':1421 'singl':214 'skill':59,108,1459 'skill-context-driven-development' 'small':1365 'snippet':1187 'solut':314,1064,1083,1104,1126,1149 'solv':600 'someth':1108 'sourc':215 'source-sickn33' 'spec':240 'spec.md':924 'specif':258,272,919,1138,1481 'specifi':1024 'sprawl':1076 'stakehold':680 'stale':1037,1055,1435 'standard':360,380,488,730,798,849,868,900 'start':657,963,1257,1362 'state':914,1245 'statement':312 'status':507,515,538,1241,1312,1317 'step':96 'stop':1333,1487 'structur':25,52,182,728,885,1088 'style':382,713,1192 'styleguid':916 'substitut':1477 'success':323,642,988,1499 'support':1249 'surviv':858 'synchron':550,950 'syntax':1220 'system':752 'target':298,316,344,420,476,977,1004,1022 'task':62,276,281,1281,1325,1328,1463 'tdd':462 'team':22,49,131,457,484,800,803,816,859,1124,1160,1416 'tech':706 'tech-stack.md':396,565,586,901,994,1182,1207,1229 'technic':788,823,992 'technolog':402,902 'terminolog':370,389,811 'test':425,472,1483 'time':1432 'tone':368 'tool':76,422,429,442,1008,1165 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'track':496,512,517,521,529,534,537,540,571,583,628,659,721,923,942,967,1029,1040,1043,1071,1276,1428 'tracks.md':495,907,1031,1240,1269,1315 'treat':156,1472 'truth':217 'type':223,523,1093 'typescript.md':922 'uncommit':1347 'understand':116,818 'unit':267,505,909 'unrel':64 'updat':141,332,383,430,482,531,564,572,580,585,619,639,672,945,1065,1134,1208,1211,1292,1314,1366,1442 'upgrad':435 'use':57,106,1084,1425,1457 'user':299,317,377,978 'user-fac':376 'valid':92,938,960,968,1217,1225,1403,1407,1482 'verif':98 'verifi':249,652,872,939,1233,1283 'version':416,437,612,999,1384 'via':934 'vision':296,335,705,895,976 'voic':358,366 'vs':146,682 'warn':1202 'without':1123,1206 'work':266,449,504,794,908,1035,1272,1309,1338,1363,1411 'work-in-progress':1337 'workflow':236,243,284,458,465,491,578,709,1011 'workflow.md':445,904,1013 'wrong':1439","prices":[{"id":"2e8c3913-8875-4878-8154-03a878ba0ec3","listingId":"5e30ddfb-ecc9-4749-9465-40839cad63b5","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:35:06.407Z"}],"sources":[{"listingId":"5e30ddfb-ecc9-4749-9465-40839cad63b5","source":"github","sourceId":"sickn33/antigravity-awesome-skills/context-driven-development","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/context-driven-development","isPrimary":false,"firstSeenAt":"2026-04-18T21:35:06.407Z","lastSeenAt":"2026-04-24T06:50:57.290Z"}],"details":{"listingId":"5e30ddfb-ecc9-4749-9465-40839cad63b5","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"context-driven-development","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34831,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-24T06:41:17Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"508035dc75f72911792eee4f7b1efd5117939da9","skill_md_path":"skills/context-driven-development/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/context-driven-development"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"context-driven-development","description":"Guide for implementing and maintaining context as a managed artifact alongside code, enabling consistent AI interactions and team alignment through structured project documentation."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/context-driven-development"},"updatedAt":"2026-04-24T06:50:57.290Z"}}