codexkit 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.codex/.template-manifest.json +44 -35
- package/.codex/.version +1 -1
- package/.codex/agents/builder.toml +6 -1
- package/.codex/agents/debugger.toml +1 -0
- package/.codex/agents/general.toml +6 -1
- package/.codex/agents/painter.toml +1 -0
- package/.codex/agents/planner.toml +1 -0
- package/.codex/agents/refactorer.toml +1 -0
- package/.codex/agents/reviewer.toml +1 -0
- package/.codex/agents/runner.toml +1 -0
- package/.codex/agents/scout.toml +43 -1
- package/.codex/agents/shipper.toml +1 -0
- package/.codex/agents/vision.toml +1 -0
- package/.codex/config.toml +32 -8
- package/.codex/mcp/README.md +47 -4
- package/.codex/mcp/context7.toml.example +41 -9
- package/.codex/mcp/exa.toml.example +35 -2
- package/.codex/memory/_templates/project.md +8 -0
- package/.codex/memory/_templates/session-context.md +8 -0
- package/.codex/memory/_templates/state.md +10 -0
- package/.codex/memory/_templates/tech-stack.md +9 -0
- package/.codex/memory/_templates/user.md +6 -0
- package/.codex/prompts/create.md +63 -26
- package/.codex/prompts/init.md +24 -0
- package/.codex/prompts/resume.md +6 -0
- package/.codex/prompts/search.md +78 -0
- package/.codex/prompts/ship.md +36 -25
- package/.codex/prompts/start.md +2 -2
- package/.codex/prompts/ui-slop-check.md +119 -0
- package/.codex/scripts/audit_memory_hygiene.sh +65 -0
- package/.codex/scripts/build_startup_brief.sh +15 -0
- package/.codex/scripts/start_bead.sh +9 -5
- package/.codex/scripts/verify_bead.sh +18 -6
- package/.codex/skills/compaction/SKILL.md +76 -125
- package/.codex/skills/context-management/SKILL.md +65 -55
- package/.codex/skills/frontend-design/SKILL.md +137 -55
- package/.codex/skills/frontend-design/references/color-system.md +125 -0
- package/.codex/skills/frontend-design/references/interaction.md +115 -0
- package/.codex/skills/frontend-design/references/motion-core.md +102 -0
- package/.codex/skills/frontend-design/references/responsive-design.md +104 -0
- package/.codex/skills/frontend-design/references/spatial-design.md +103 -0
- package/.codex/skills/frontend-design/references/typography-rules.md +118 -0
- package/.codex/skills/frontend-design/references/ux-writing.md +105 -0
- package/.codex/skills/session-management/SKILL.md +12 -5
- package/.template-manifest.json +44 -35
- package/AGENTS.md +3 -3
- package/CHANGELOG.md +44 -0
- package/README.md +4 -1
- package/bin/codexkit +3 -3
- package/install/install-global.sh +93 -52
- package/install/install-project.sh +211 -117
- package/install/validate.sh +1 -1
- package/package.json +1 -1
|
@@ -1,43 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
2
|
+
"version": "1.0.4",
|
|
3
3
|
"generator": "codexkit",
|
|
4
4
|
"files": {
|
|
5
5
|
"templates/global/AGENTS.override.md": "11039408f8776171820ce34165b5da6d52a703d26a938fb773e231a159eefe2c",
|
|
6
6
|
"templates/global/.codex-config-template.toml": "aa3490d544eded2ab1eff3eee89823884d1d0085c502eceb604d89408a94848d",
|
|
7
7
|
"templates/project/.codex-config-template.toml": "dc8ded8af4deaf39155d5fdddeabf0763af5293f24e3477ec871d59fd8530e80",
|
|
8
8
|
"templates/project/AGENTS.md.template": "acb5ea31fd561ddbbc79c6baf6de98b990bbac693ba6d836406d270a1f27a981",
|
|
9
|
-
".codex/config.toml": "
|
|
9
|
+
".codex/config.toml": "2079664ff35b0b5b05187c1fa5e6b4fdb0b8df24fff5e69ab9297956459d1b16",
|
|
10
10
|
".codex/.env.example": "1827612829279fad025404b763ea214412bd5cd53474ad315909a8c275f12b84",
|
|
11
|
-
".codex/.version": "
|
|
12
|
-
".codex/agents/builder.toml": "
|
|
13
|
-
".codex/agents/debugger.toml": "
|
|
14
|
-
".codex/agents/general.toml": "
|
|
15
|
-
".codex/agents/painter.toml": "
|
|
16
|
-
".codex/agents/planner.toml": "
|
|
17
|
-
".codex/agents/refactorer.toml": "
|
|
18
|
-
".codex/agents/reviewer.toml": "
|
|
19
|
-
".codex/agents/runner.toml": "
|
|
20
|
-
".codex/agents/scout.toml": "
|
|
21
|
-
".codex/agents/shipper.toml": "
|
|
22
|
-
".codex/agents/vision.toml": "
|
|
11
|
+
".codex/.version": "d1b77b88f4b9f675a900e4143ac768a21218623cfe1703ca43162388c3271bd6",
|
|
12
|
+
".codex/agents/builder.toml": "b4e887e5ad5202337b0fda9815588db0eec2deee8fdfbdb8dad6bf2df6bf3d30",
|
|
13
|
+
".codex/agents/debugger.toml": "e67fdaee1807c2d8c40b2752737d6e1f535a0c52d863cc76eb9c8059f292bc13",
|
|
14
|
+
".codex/agents/general.toml": "274489e5d726ee11fc5d9ec43d44c4b7bc1ac22b435ad536af8818c6d430d46c",
|
|
15
|
+
".codex/agents/painter.toml": "bf03cc1cfe383aaa8b46c1a9632b917c79c0cea122ab3dedb3ed79afad580cec",
|
|
16
|
+
".codex/agents/planner.toml": "3b195c6e89065481a0825d652884485883dfca8da07281f113a1025b0971c9e6",
|
|
17
|
+
".codex/agents/refactorer.toml": "0de4d73931352edbef9dcff4bfd6ad4fb61ff10ba5fcf330d724e5f4193fdd67",
|
|
18
|
+
".codex/agents/reviewer.toml": "8634aac733cbf2e9c8d5ad81fc22a17c239156c1d78edb15e94b6f63488c1177",
|
|
19
|
+
".codex/agents/runner.toml": "cb3baca8eb358ace7c4b63f39ec6de0833b6e46655ccf816b0a553ec25faa677",
|
|
20
|
+
".codex/agents/scout.toml": "ff411e1a10f9ff99cdc92e345be92e5bfa674f6d9dd03ca03dab7d5b31895252",
|
|
21
|
+
".codex/agents/shipper.toml": "940c3ffd2c467e11def4c4d87bae4c5244deee42bc48009cabbf1a07009eac4b",
|
|
22
|
+
".codex/agents/vision.toml": "430a3b9ae1f8d2322791b2683ea7cf1ca5dad353f00f2b6c2c09fd8bfe9acbe4",
|
|
23
23
|
".codex/prompts/compound.md": "2f3f713031c6a2591cf257a47f8909874ff0f94cf7a6663eeb8fe30fc1ae2a2e",
|
|
24
|
-
".codex/prompts/create.md": "
|
|
24
|
+
".codex/prompts/create.md": "f8bbe26011ddf5b95a6420ba41ecac2b605d39cf767367b0d3681024b7338dec",
|
|
25
25
|
".codex/prompts/design.md": "ee5dd7883a9ceb28a5c77526c35b040e1127e3de8022654fba2e26b9d42ec529",
|
|
26
26
|
".codex/prompts/handoff.md": "c3a1429739c5e83da931e6fcca7e7c645b92fb70c2c31088446aa6378958e05d",
|
|
27
27
|
".codex/prompts/init-context.md": "1df06b3abbddb8b3b920dbe72f4ea4b1ed2af58e3c4a9067dad128657bae3681",
|
|
28
28
|
".codex/prompts/init-user.md": "2904015a4a699918f27136b8be33a5647543e748ed8c546869d6c7d8e79216b8",
|
|
29
|
-
".codex/prompts/init.md": "
|
|
29
|
+
".codex/prompts/init.md": "9c17f422ee0c196d5e04e0def022d71050396630be82bf97f55139e187a960e5",
|
|
30
30
|
".codex/prompts/lfg.md": "d8d3f99522524f92d35360a9c00fb9410424b8818903ec3bb821cebef8579011",
|
|
31
31
|
".codex/prompts/plan.md": "f47aeb00d01167d5fee372115043fbfcac86216d59987ec16f67e7058aad6c42",
|
|
32
32
|
".codex/prompts/pr.md": "0866ed92ac74447ce01c955f49b00f055c5a244f80bd12a5f679f3860b776212",
|
|
33
33
|
".codex/prompts/research.md": "0ab8c8652d789ffc62a13ef6f7d533f63db77d8292dfaba4888a13a8eddb9d23",
|
|
34
|
-
".codex/prompts/resume.md": "
|
|
34
|
+
".codex/prompts/resume.md": "02b286294fcd2c58a2e3c0a77995eefc9c76319dbbc54e35fc1208f06c7fca99",
|
|
35
35
|
".codex/prompts/review-codebase.md": "07f6ea450c02f820871edb2c5432d364dfa8e87bd662f13ba305ccb2cc25a5de",
|
|
36
|
-
".codex/prompts/
|
|
37
|
-
".codex/prompts/
|
|
36
|
+
".codex/prompts/search.md": "f648fbfa84e16654981e262fb233a1e23b2525790f0698da5bc2bbc8aea60ad0",
|
|
37
|
+
".codex/prompts/ship.md": "bf0eee8272c2ffab78574aef940be07e7dcf4129b7aa9d1368d850be16cde099",
|
|
38
|
+
".codex/prompts/start.md": "4abc1166ae6657070ec3162610504e8e4ba19df595e4552fe30bae70561999e3",
|
|
38
39
|
".codex/prompts/status.md": "c742f0b64b08f59fceb3eb90e1693a81de421c2311eb553f85793faed19e1bca",
|
|
39
40
|
".codex/prompts/ui-inspire.md": "4562892c1b3600d5b936cb5f62f3a45cd2d48dfba16f02a26de9d087e2b15ed6",
|
|
40
41
|
".codex/prompts/ui-review.md": "4b33aa90df5e6bed0a2a5d9a077b8a778577cb0271b3a03a3f41587b6132db09",
|
|
42
|
+
".codex/prompts/ui-slop-check.md": "19e9888ad59cd74ffeb0352b0ea813a8642320774bcdd0b34877e29ae3672e14",
|
|
41
43
|
".codex/prompts/verify.md": "d38dc229c7565c5c9a45869a1a5d17f1c3f6f5fee2f2e94ffe7ac10f9837a2e5",
|
|
42
44
|
".codex/skills/accessibility-audit/SKILL.md": "7cab0faa18ead1d87b62cb33a1f6774d9a485bf570a9b4c3538d811993eefc80",
|
|
43
45
|
".codex/skills/agent-browser/SKILL.md": "953a56fe1c7b40dd16842935f72f91b05bd25635e18196969bce982b7f8ae82a",
|
|
@@ -322,12 +324,12 @@
|
|
|
322
324
|
".codex/skills/cloudflare/references/zaraz/README.md": "c1fd43e131dd57576c84b10c4bc12b92d17ce8a837d042c0ed0e9ec5ab2fd256",
|
|
323
325
|
".codex/skills/code-navigation/SKILL.md": "bd35077d9afd8becb5f0813e9ced5c214daf6e5aad3926270091cb731fe58e28",
|
|
324
326
|
".codex/skills/code-review/SKILL.md": "3f7d6b61adbe4eb68bc6907721d1ad7d74c474a6eb0a6784ea0163945d272cad",
|
|
325
|
-
".codex/skills/compaction/SKILL.md": "
|
|
327
|
+
".codex/skills/compaction/SKILL.md": "d85f33180d26148d500ef6501e421513bec349f9078d4a5a47f70341088a2a01",
|
|
326
328
|
".codex/skills/condition-based-waiting/SKILL.md": "cf3c747488745c6e51e62bbf1e84b3cb868aac05ff3f8c245e65aa9ab4a0c5a8",
|
|
327
329
|
".codex/skills/condition-based-waiting/example.ts": "e35f816255c50db93421c8b5f165a6efbc3baa0856ce66a44edc7b34c0bd3608",
|
|
328
330
|
".codex/skills/context-engineering/SKILL.md": "1dcd750d778aebbf11f5ac09ace26b5ebd69f4d7e68994f53c22464a74e430b5",
|
|
329
331
|
".codex/skills/context-initialization/SKILL.md": "5fbf8502303789fffba37f62fa274f9e7fece31935859d5c9f0be3bfd3b14764",
|
|
330
|
-
".codex/skills/context-management/SKILL.md": "
|
|
332
|
+
".codex/skills/context-management/SKILL.md": "e6e39288a95776860126c1b65a8b4143046858455960b9b1b19f055de6d24fb8",
|
|
331
333
|
".codex/skills/core-data-expert/SKILL.md": "f8db3769edd501b86795d3ea43dd32060060dd1ab9f905055fea9301f07009a6",
|
|
332
334
|
".codex/skills/core-data-expert/references/batch-operations.md": "96ab160c97b15b661de854bd24a2e5e3a9b8ec05a51009f5fe98ad887e52e0e7",
|
|
333
335
|
".codex/skills/core-data-expert/references/cloudkit-integration.md": "550039d328a43519a2fb50ce3d8d8572a2ab8253991aa919ec33b849b60b56a8",
|
|
@@ -355,7 +357,14 @@
|
|
|
355
357
|
".codex/skills/figma/SKILL.md": "d9799488d3b8db3b86d633627320fea3ed6deafa11e573a0d4b9aa8e78c50ceb",
|
|
356
358
|
".codex/skills/figma/mcp.json": "1268189eaf6051544d129c9fec82454bb7df4101d22231c65f9a75e5bc1b98d6",
|
|
357
359
|
".codex/skills/finishing-a-development-branch/SKILL.md": "df9295cc756c22775779b7700997ea432b9aafab36d739c8d0b72db25d2e162f",
|
|
358
|
-
".codex/skills/frontend-design/SKILL.md": "
|
|
360
|
+
".codex/skills/frontend-design/SKILL.md": "f7ced66f8871c2015fcdc47fc699012fa515a10763de803cd52d9926e6d3f5c5",
|
|
361
|
+
".codex/skills/frontend-design/references/color-system.md": "c602d11206390802a502592ed2035b964dfc0dada9b61558426752f36b5dda34",
|
|
362
|
+
".codex/skills/frontend-design/references/interaction.md": "98f7f7f5021150eec6e44ede1b9b8c97c025da655dfcea7106dd6ce65569f059",
|
|
363
|
+
".codex/skills/frontend-design/references/motion-core.md": "03ae880a0639e4add78a9dd9974b04eab09a0d43292361e86e53b4c8262b814d",
|
|
364
|
+
".codex/skills/frontend-design/references/responsive-design.md": "38a2c5cad62b3384a56f756942fe13856c0dd164f37abdfaf3181ccd6d8bf685",
|
|
365
|
+
".codex/skills/frontend-design/references/spatial-design.md": "e773f1d77a62696371ed680d58bb78cb94bd16d66e0976b683eb483dfd738a7e",
|
|
366
|
+
".codex/skills/frontend-design/references/typography-rules.md": "9e8d063ce1ef57755b0231e937c05e0b4501a18c00034b7f9d89d1fcfca16d67",
|
|
367
|
+
".codex/skills/frontend-design/references/ux-writing.md": "f0ccd5432eab0b4e8b4ccf38a17551c833df15e14a59c7a9011f45f34d9c3c3c",
|
|
359
368
|
".codex/skills/gemini-large-context/SKILL.md": "9851f1ced0c4bd99f6021cd4bf8c90ac445da25026ed96c99e8c6f38929cea7f",
|
|
360
369
|
".codex/skills/git-pr-prep/SKILL.md": "57e48b83fb11101c1376e727f39332500bbc416838f0e20e4d72d87de2ea6f3a",
|
|
361
370
|
".codex/skills/index-knowledge/SKILL.md": "b1188ba08c583d346be20d8efb0f72f834c968ff5fc708e0f04fdc32aa4d9952",
|
|
@@ -447,7 +456,7 @@
|
|
|
447
456
|
".codex/skills/root-cause-tracing/SKILL.md": "ff1002204c1ec1b1de54a77886edb0cd7c7d1d97a2b571a861818b2a466bba85",
|
|
448
457
|
".codex/skills/root-cause-tracing/find-polluter.sh": "6462747eae9b175ac145b78bcfaeab755654a75e32637f08eb633f065a9e1d7c",
|
|
449
458
|
".codex/skills/safe-implementation/SKILL.md": "fd92709e320b3ccbaa76fe5259424439ab769a67e8d72830f780fde8210ce2da",
|
|
450
|
-
".codex/skills/session-management/SKILL.md": "
|
|
459
|
+
".codex/skills/session-management/SKILL.md": "53532fa06e003a7dfd62afa0b8b7d4f1c8ac0967b35f1d5bd8734668417d276b",
|
|
451
460
|
".codex/skills/sharing-skills/SKILL.md": "c662da5bd3907b987121854efddd90a266db902d1662e62b4e6054e3f03d07dd",
|
|
452
461
|
".codex/skills/skill-creator/SKILL.md": "c574e634e616905287338f6cad0359ef471a6f241cd888cabcebfa1710d2a71d",
|
|
453
462
|
".codex/skills/source-code-research/SKILL.md": "0ec5a37e92c81505de40e37c190f1d64c870e8c5e75636ea76901f1d05fc265f",
|
|
@@ -577,24 +586,24 @@
|
|
|
577
586
|
".codex/hooks/stop.sh": "7008c4a7a6fba302b0f589c65370b0bf8444a2c7b2114117521b9ea09041cfc3",
|
|
578
587
|
".codex/scripts/append_worklog.sh": "44b7d6f00f4be6aec77081c7c74d9891cb12b6096f29204903ae544991172591",
|
|
579
588
|
".codex/scripts/apply_worklog_archive.sh": "416958f91d760a09183235c2d7a67faa0a006351652bf743da7045273129c49c",
|
|
580
|
-
".codex/scripts/audit_memory_hygiene.sh": "
|
|
589
|
+
".codex/scripts/audit_memory_hygiene.sh": "9739a42d176db2002d81f0626c3458eda2004a4fdeeefe2c0b2797d10cb240b1",
|
|
581
590
|
".codex/scripts/build_memory_index.sh": "247ecaed52d305dcf6651f137c8e762e7b4661781af16df8a296b3da19ad96b8",
|
|
582
591
|
".codex/scripts/build_prior_related_work.sh": "08d226f318eb4859529f774b9e03daaee4c70d17e814422cddb6f1c1efd52313",
|
|
583
|
-
".codex/scripts/build_startup_brief.sh": "
|
|
592
|
+
".codex/scripts/build_startup_brief.sh": "7130ae1c5a56c79f66c6450a558f3f6b9642ed34df8696b2fde82d1d287caddf",
|
|
584
593
|
".codex/scripts/close_bead.sh": "90944f59945a440280b958924858e1bb515e60bbc36805e26387da77ef657022",
|
|
585
594
|
".codex/scripts/detect_changed_files.sh": "10633eda525c32ac0a1410239117f8ede5d23ae7faba4108b3f3e9096ffed366",
|
|
586
595
|
".codex/scripts/ensure_beads.sh": "9f69036f7fdb332f2089b4a58afdc55d982612cc004d98628bfd0b311f74e078",
|
|
587
596
|
".codex/scripts/memory_search.sh": "4c94a2785ce337f981aa234c8b3a935af9de42117cfbacf979c078718ac9952c",
|
|
588
597
|
".codex/scripts/prepare_worklog_archive.sh": "51d606d69a0e6c73d0e1978cbdcdb581ee9187391bcf8dfbf181d55306edc16f",
|
|
589
598
|
".codex/scripts/search_bead_context.sh": "c2040a7eb6039db278422045196333f70a520f0a6ff2843c5fa06cc08f424060",
|
|
590
|
-
".codex/scripts/start_bead.sh": "
|
|
599
|
+
".codex/scripts/start_bead.sh": "2c86e405df67d2f0dc6d3a616c2a92a13984c2745cbf5c5d5ab4b25a90584eb2",
|
|
591
600
|
".codex/scripts/sync_bead_context.sh": "6b8d6908cffbbf8fdbf5bf548e09788d504daddce092bd7112eee695882a64a7",
|
|
592
601
|
".codex/scripts/validate_memory_docs.sh": "a0a2b184db21dae92c88a0ea837be8bcaf7a47150392034d3110842f266c4afc",
|
|
593
|
-
".codex/scripts/verify_bead.sh": "
|
|
594
|
-
".codex/mcp/README.md": "
|
|
602
|
+
".codex/scripts/verify_bead.sh": "16571365aa54f300ec2554573f13bd74c37b22bfc54e1c09d5b55553855a0add",
|
|
603
|
+
".codex/mcp/README.md": "e03cb3c5cd228692c5f573b1ead8e2b0f2effda361ec43721617029d561f3083",
|
|
595
604
|
".codex/mcp/basic-memory.toml.example": "b40ef19861a8f29d3d78d7b166474cc4d44e79362bf5fc81942754609ff4ee3c",
|
|
596
|
-
".codex/mcp/context7.toml.example": "
|
|
597
|
-
".codex/mcp/exa.toml.example": "
|
|
605
|
+
".codex/mcp/context7.toml.example": "658967017443c6c9d6b181694767c3f97180c2febdc050cc3747de2b3ae2b761",
|
|
606
|
+
".codex/mcp/exa.toml.example": "bc746ddc0fc9e88cbaa14d8b6cff1b3d3a5e04e587722b7a82d79d18a6cd21d4",
|
|
598
607
|
".codex/mcp/memory-bridge.toml.example": "3689f1b04410463c2e648e437e16c30901a7b1c5e165255e03b3552c9a4b03e8",
|
|
599
608
|
".codex/mcp/memory.toml.example": "3c5575ebd822729023220c7a6c7f7a6a7e0ac9e43edbf7e0665d4e06938fb8e7",
|
|
600
609
|
".codex/mcp/ref.toml.example": "a7a5d84b04f9d7a35282e91eb45111a0d7ddb185cdc8326461a8306d9b5d802b",
|
|
@@ -613,15 +622,15 @@
|
|
|
613
622
|
".codex/memory/_templates/gotcha.md": "bf06bb72050dd71afb543d9ac9480f35ac240100fe8221ae855cf286dc94c0a7",
|
|
614
623
|
".codex/memory/_templates/handoff.md": "1d83137e655733453a2895b8a2f6cb29238eeff26ed276250164ebeecdd5e204",
|
|
615
624
|
".codex/memory/_templates/prd.md": "11f80e3af46896c7980bef37088381350e5cbc90e2f22399c50ed9dcab3f2bc1",
|
|
616
|
-
".codex/memory/_templates/project.md": "
|
|
625
|
+
".codex/memory/_templates/project.md": "21e720af0d9bbe600f6707ca6bdc88af75e4d134563b825680738d9aa2d2499e",
|
|
617
626
|
".codex/memory/_templates/proposal.md": "5ad769245bd83279bbd70fc37976b23c08190d2a4b416eb46cb696b22d437e19",
|
|
618
627
|
".codex/memory/_templates/research.md": "6966290f90233087979cca5c49c075216c817b9c63c0ae444fea0f4b667ed016",
|
|
619
628
|
".codex/memory/_templates/roadmap.md": "6945f7fa459554d7195104bc1e8f1debdd3c5d37f869e63ae2a60ecb37065045",
|
|
620
|
-
".codex/memory/_templates/session-context.md": "
|
|
621
|
-
".codex/memory/_templates/state.md": "
|
|
629
|
+
".codex/memory/_templates/session-context.md": "fb39fb199be3323d1417982ecdfd7eb758a5a3ef06662eab5df10696d6c3eba5",
|
|
630
|
+
".codex/memory/_templates/state.md": "98286fa2aa00e216dc29dcc7fe7d9da1401cb33d36af5a482f88e8188bcc788c",
|
|
622
631
|
".codex/memory/_templates/tasks.md": "54119ce84fd0aa6ecd0148355f33808c061147da774475c94bf7e47bb18f73dd",
|
|
623
|
-
".codex/memory/_templates/tech-stack.md": "
|
|
624
|
-
".codex/memory/_templates/user.md": "
|
|
632
|
+
".codex/memory/_templates/tech-stack.md": "38c0e2255360cc777295bcb89202510f3e0ee0927d7a23422ca55b33a6ef9448",
|
|
633
|
+
".codex/memory/_templates/user.md": "d12ba5cdc382dbeeda5128a0b0ffe81993fbebfd882edaa46e6778cf7088cf73",
|
|
625
634
|
".codex/memory/project/gotchas.md": "05ce128ced24deffbb51a8b7167000c4e4816c4e3275a98f439fddb0e95c2bd6",
|
|
626
635
|
".codex/memory/project/project.md": "94a76028472946ba9782534de4920e9a77cfdf0f4daa063a97569660ccc06e21",
|
|
627
636
|
".codex/memory/project/roadmap.md": "6027b3bd3eaeed02b16a59037e760200ce8505f3007375faf2543b4b58bcee6e",
|
package/.codex/.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.4
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Builder Agent — Primary implementation specialist
|
|
2
2
|
|
|
3
|
+
name = "builder"
|
|
3
4
|
description = "Primary implementation agent — writes production code with verification and deviation rules."
|
|
4
5
|
model = "gpt-5.3-codex"
|
|
5
6
|
model_reasoning_effort = "medium"
|
|
@@ -25,7 +26,11 @@ During and after execution:
|
|
|
25
26
|
|
|
26
27
|
## Operating Rules
|
|
27
28
|
|
|
28
|
-
- Read files before editing.
|
|
29
|
+
- **Read files before editing** — runtime enforced for existing files.
|
|
30
|
+
Codex rejects Write/Edit on an existing file that has not been Read in
|
|
31
|
+
the current session (`File has not been read in this session. Read the file before editing.`).
|
|
32
|
+
New files can be written freely; the guard only fires for files already on disk.
|
|
33
|
+
Prefer Edit for partial modifications; use Write for new files or full replacements after Read.
|
|
29
34
|
- Keep edits minimal and directly tied to the request.
|
|
30
35
|
- Prefer existing utilities and patterns before creating new abstractions.
|
|
31
36
|
- Ask before irreversible actions (delete data/files, push, merge, destructive commands).
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Debugger Agent — Bug investigation and root cause analysis
|
|
2
2
|
# Systematic debugging with hypothesis-driven investigation
|
|
3
3
|
|
|
4
|
+
name = "debugger"
|
|
4
5
|
description = "Bug investigation specialist — finds root causes through systematic hypothesis testing."
|
|
5
6
|
model = "gpt-5.3-codex"
|
|
6
7
|
model_reasoning_effort = "high"
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# General Agent — Small scoped implementation subtasks
|
|
2
2
|
|
|
3
|
+
name = "general"
|
|
3
4
|
description = "Small, well-defined implementation subtasks with limited scope."
|
|
4
5
|
model = "gpt-5.3-codex"
|
|
5
6
|
model_reasoning_effort = "medium"
|
|
@@ -27,7 +28,11 @@ module, one concrete acceptance target.
|
|
|
27
28
|
## Rules
|
|
28
29
|
|
|
29
30
|
- Stay within the assigned scope.
|
|
30
|
-
- Read affected files before editing.
|
|
31
|
+
- **Read affected files before editing** — runtime enforced for existing files.
|
|
32
|
+
Codex rejects Write/Edit on an existing file that has not been Read in
|
|
33
|
+
the current session (`File has not been read in this session. Read the file before editing.`).
|
|
34
|
+
New files can be written freely; the guard only fires for files already on disk.
|
|
35
|
+
Prefer Edit for partial modifications; use Write for new files or full replacements after Read.
|
|
31
36
|
- Run the smallest verification that proves your slice works.
|
|
32
37
|
- Do not broaden the task without evidence that the current scope is blocked.
|
|
33
38
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Planner Agent — Architecture and implementation planning
|
|
2
2
|
# Codexkit planner agent definition
|
|
3
3
|
|
|
4
|
+
name = "planner"
|
|
4
5
|
description = "Plans implementation approach with goal-backward decomposition before coding begins."
|
|
5
6
|
model = "gpt-5.4"
|
|
6
7
|
model_reasoning_effort = "high"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Refactorer Agent — Safe refactoring specialist
|
|
2
2
|
# Behavior-preserving code improvements with test verification
|
|
3
3
|
|
|
4
|
+
name = "refactorer"
|
|
4
5
|
description = "Safe refactoring specialist — improves code structure while preserving behavior."
|
|
5
6
|
model = "gpt-5.3-codex"
|
|
6
7
|
model_reasoning_effort = "medium"
|
package/.codex/agents/scout.toml
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Scout Agent — External research and documentation specialist
|
|
2
2
|
# Codexkit scout agent definition
|
|
3
3
|
|
|
4
|
+
name = "scout"
|
|
4
5
|
description = "Research specialist for library docs, API references, and external patterns."
|
|
5
6
|
model = "gpt-5.4"
|
|
6
7
|
model_reasoning_effort = "medium"
|
|
@@ -49,7 +50,7 @@ Before starting research, check which tools are available and adapt your strateg
|
|
|
49
50
|
| grepsearch | GitHub real-world code examples | Built-in | Always available |
|
|
50
51
|
|
|
51
52
|
> **All three external MCPs are primary.** For best results, use them together in parallel:
|
|
52
|
-
> - **exa** — broadest: web search (`
|
|
53
|
+
> - **exa** — broadest: web search (`web_search_exa`) + code context (`get_code_context_exa`)
|
|
53
54
|
> - **ref** — broadest docs: searches docs, private repos, and PDFs (has credit system)
|
|
54
55
|
> - **context7** — deepest library API: precise function signatures, code examples, version-specific docs
|
|
55
56
|
>
|
|
@@ -57,6 +58,47 @@ Before starting research, check which tools are available and adapt your strateg
|
|
|
57
58
|
> research output. Fallback only applies when a tool is **unavailable** (not configured,
|
|
58
59
|
> out of credits, or timing out) — not because it's less important.
|
|
59
60
|
|
|
61
|
+
### Context7 Workflow (Two-Step)
|
|
62
|
+
|
|
63
|
+
Context7 requires a two-step lookup:
|
|
64
|
+
|
|
65
|
+
1. **resolve-library-id**: Search for library → get Context7 library ID
|
|
66
|
+
- Input: `libraryName` (e.g. "next.js") + `query` (what you need)
|
|
67
|
+
- Pick best match by: name similarity > trust score > snippet count
|
|
68
|
+
- Max 3 calls per question
|
|
69
|
+
|
|
70
|
+
2. **query-docs**: Fetch docs/code using library ID from step 1
|
|
71
|
+
- Input: `libraryId` (e.g. "/vercel/next.js") + `query` (specific question)
|
|
72
|
+
- Be specific: "How to set up JWT auth in Express.js" > "auth"
|
|
73
|
+
- Include language + framework + version in queries
|
|
74
|
+
- Max 3 calls per question
|
|
75
|
+
|
|
76
|
+
### Exa Tool Selection
|
|
77
|
+
|
|
78
|
+
Choose the right Exa tool for each task:
|
|
79
|
+
|
|
80
|
+
| Task | Tool | Notes |
|
|
81
|
+
|-------------------------------|-------------------------|-------------------------------------|
|
|
82
|
+
| General web research | `web_search_exa` | News, trends, current info |
|
|
83
|
+
| Code examples & API usage | `get_code_context_exa` | GitHub, StackOverflow, official docs |
|
|
84
|
+
| Read specific URL content | `crawling_exa` | Full page content extraction |
|
|
85
|
+
| Complex multi-source question | `deep_search_exa` | Query expansion + synthesis |
|
|
86
|
+
|
|
87
|
+
Tips:
|
|
88
|
+
- Use `numResults=5-8` for focused queries, `10+` for broad exploration
|
|
89
|
+
- Include current year in queries for recent info
|
|
90
|
+
- `get_code_context_exa` is best for "how do I use X library" questions
|
|
91
|
+
- `crawling_exa` is best when you already have a URL to read
|
|
92
|
+
|
|
93
|
+
### Ref Tool Selection
|
|
94
|
+
|
|
95
|
+
| Tool | Purpose |
|
|
96
|
+
|----------------------------|------------------------------------------------|
|
|
97
|
+
| `ref_search_documentation` | Search public docs, private repos, PDFs |
|
|
98
|
+
| `ref_read_url` | Read content of a URL from search results |
|
|
99
|
+
|
|
100
|
+
Include `ref_src=private` in query to search user's private docs.
|
|
101
|
+
|
|
60
102
|
### Fallback Chain (when a tool is unavailable)
|
|
61
103
|
|
|
62
104
|
Only used when a tool is not configured or fails. Under normal operation, all three run together.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Shipper Agent — Release preparation and PR workflow
|
|
2
2
|
# Codexkit shipper agent definition
|
|
3
3
|
|
|
4
|
+
name = "shipper"
|
|
4
5
|
description = "Prepares and validates code for shipping — PR prep, changelog, final verification."
|
|
5
6
|
model = "gpt-5.3-codex"
|
|
6
7
|
sandbox_mode = "workspace-write"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Vision Agent — UI/UX analysis and accessibility specialist
|
|
2
2
|
# Codexkit vision agent definition
|
|
3
3
|
|
|
4
|
+
name = "vision"
|
|
4
5
|
description = "Visual analysis specialist for UI/UX review, accessibility audits, design consistency, and grounded inspiration scouting."
|
|
5
6
|
model = "gpt-5.4"
|
|
6
7
|
model_reasoning_effort = "high"
|
package/.codex/config.toml
CHANGED
|
@@ -54,13 +54,16 @@ approval_policy = "on-request"
|
|
|
54
54
|
|
|
55
55
|
# ─── Agents ─────────────────────────────────────────────────────────
|
|
56
56
|
#
|
|
57
|
-
# Multi-agent roles. Each role has a .toml
|
|
57
|
+
# Multi-agent roles. Each role has a standalone .toml file in .codex/agents/.
|
|
58
58
|
# Built-in roles (default, explorer, worker) are always available.
|
|
59
|
-
#
|
|
59
|
+
# Codex auto-discovers standalone agent files (must define name, description,
|
|
60
|
+
# developer_instructions). The explicit registrations below provide description
|
|
61
|
+
# visibility in config and are still supported. See: https://developers.openai.com/codex/subagents
|
|
60
62
|
|
|
61
63
|
[agents]
|
|
62
64
|
max_threads = 6
|
|
63
65
|
max_depth = 1
|
|
66
|
+
# job_max_runtime_seconds = 1800 # Default timeout per worker for spawn_agents_on_csv
|
|
64
67
|
|
|
65
68
|
[agents.planner]
|
|
66
69
|
description = "Plans implementation approach with goal-backward decomposition before coding begins."
|
|
@@ -138,9 +141,30 @@ persistence = "save-all"
|
|
|
138
141
|
# ─── Feature Flags ─────────────────────────────────────────────────
|
|
139
142
|
|
|
140
143
|
[features]
|
|
141
|
-
multi_agent
|
|
142
|
-
#
|
|
143
|
-
#
|
|
144
|
-
|
|
145
|
-
#
|
|
146
|
-
#
|
|
144
|
+
# multi_agent — enabled by default since Codex v0.115.0; explicit flag no longer required.
|
|
145
|
+
# Uncomment only if you need to disable subagents:
|
|
146
|
+
# multi_agent = false
|
|
147
|
+
|
|
148
|
+
# ─── Memories ──────────────────────────────────────────────────────
|
|
149
|
+
#
|
|
150
|
+
# Codex CLI has a native memories subsystem (MemoriesToml) that manages
|
|
151
|
+
# persistent conversation context and summarization across sessions.
|
|
152
|
+
#
|
|
153
|
+
# Status: Available in Codex CLI but still maturing. Codexkit treats it as
|
|
154
|
+
# opt-in. Repo-visible docs (.codex/context/ and .codex/memory/) remain
|
|
155
|
+
# the canonical source of truth for project knowledge.
|
|
156
|
+
#
|
|
157
|
+
# To enable native Codex memories:
|
|
158
|
+
# [features]
|
|
159
|
+
# memories = true
|
|
160
|
+
#
|
|
161
|
+
# To configure the memories subsystem (when supported by your Codex version):
|
|
162
|
+
# [memories]
|
|
163
|
+
# # max_history_tokens = 4096
|
|
164
|
+
# # summarization_enabled = true
|
|
165
|
+
#
|
|
166
|
+
# Guidance:
|
|
167
|
+
# - Enable only after verifying your Codex version supports [memories] config
|
|
168
|
+
# - Do not treat native memories as a replacement for .codex/context/ or .codex/memory/
|
|
169
|
+
# - Keep repo-visible docs as the canonical source of truth
|
|
170
|
+
# - Native memories complement file-based context; they do not replace it
|
package/.codex/mcp/README.md
CHANGED
|
@@ -37,15 +37,38 @@ From the target project, create `.codex/.env` from `.codex/.env.example` and lau
|
|
|
37
37
|
|
|
38
38
|
**Primary** for precise library API lookups — function signatures, code examples, version-specific docs. Deepest coverage for known libraries.
|
|
39
39
|
|
|
40
|
+
**Two-step workflow:**
|
|
41
|
+
|
|
42
|
+
1. `resolve-library-id` — search for library by name → get Context7 library ID
|
|
43
|
+
2. `query-docs` — fetch docs/code examples using the library ID from step 1
|
|
44
|
+
|
|
45
|
+
Best practices: include language + framework in queries, be specific, max 3 calls per tool per question.
|
|
46
|
+
|
|
47
|
+
**STDIO (recommended)** — free for basic use, no API key required:
|
|
48
|
+
|
|
49
|
+
```toml
|
|
50
|
+
[mcp_servers.context7]
|
|
51
|
+
command = "npx"
|
|
52
|
+
args = ["-y", "@upstash/context7-mcp"]
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Or via CLI: `codex mcp add context7 -- npx -y @upstash/context7-mcp`
|
|
56
|
+
|
|
57
|
+
For higher rate limits, add an API key from [context7.com](https://context7.com) → Dashboard:
|
|
58
|
+
|
|
59
|
+
```toml
|
|
60
|
+
[mcp_servers.context7.env]
|
|
61
|
+
CONTEXT7_API_KEY = "your-key-here"
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
**Alternative — HTTP remote:**
|
|
65
|
+
|
|
40
66
|
```toml
|
|
41
67
|
[mcp_servers.context7]
|
|
42
68
|
url = "https://mcp.context7.com/mcp"
|
|
43
69
|
env_http_headers = { "CONTEXT7_API_KEY" = "CONTEXT7_API_KEY" }
|
|
44
|
-
startup_timeout_ms = 20_000
|
|
45
70
|
```
|
|
46
71
|
|
|
47
|
-
Get your key at [context7.com](https://context7.com) → Dashboard.
|
|
48
|
-
|
|
49
72
|
### Ref — Documentation search (Primary)
|
|
50
73
|
|
|
51
74
|
**Primary** for broad documentation search — covers official docs, private repos, and PDFs. Has a credit system. Broadest documentation coverage.
|
|
@@ -61,7 +84,19 @@ Get your key at [ref.tools](https://ref.tools) → Dashboard.
|
|
|
61
84
|
|
|
62
85
|
### Exa — Web search & code context (Primary)
|
|
63
86
|
|
|
64
|
-
**Primary** for web research and code context. Most versatile tool
|
|
87
|
+
**Primary** for web research and code context. Most versatile tool.
|
|
88
|
+
|
|
89
|
+
**Default tools**: `web_search_exa` (general web search), `get_code_context_exa` (code from GitHub/StackOverflow/docs)
|
|
90
|
+
|
|
91
|
+
**Optional tools** (enable via `?tools=` URL parameter): `crawling_exa` (read full page content), `deep_search_exa` (multi-source synthesis), `company_research_exa`, `linkedin_search_exa`
|
|
92
|
+
|
|
93
|
+
Tool selection:
|
|
94
|
+
- `web_search_exa` → general queries, news, trends
|
|
95
|
+
- `get_code_context_exa` → programming questions, API usage, library examples
|
|
96
|
+
- `crawling_exa` → when you have a specific URL to read
|
|
97
|
+
- `deep_search_exa` → complex questions needing multi-source answers
|
|
98
|
+
|
|
99
|
+
**Default config** (minimal, fastest):
|
|
65
100
|
|
|
66
101
|
```toml
|
|
67
102
|
[mcp_servers.exa]
|
|
@@ -69,6 +104,14 @@ url = "https://mcp.exa.ai/mcp"
|
|
|
69
104
|
bearer_token_env_var = "EXA_API_KEY"
|
|
70
105
|
```
|
|
71
106
|
|
|
107
|
+
**Research config** (for scout agent, adds page crawling + deep search):
|
|
108
|
+
|
|
109
|
+
```toml
|
|
110
|
+
[mcp_servers.exa]
|
|
111
|
+
url = "https://mcp.exa.ai/mcp?tools=web_search_exa,get_code_context_exa,crawling_exa,deep_search_exa"
|
|
112
|
+
bearer_token_env_var = "EXA_API_KEY"
|
|
113
|
+
```
|
|
114
|
+
|
|
72
115
|
Get your key at [exa.ai](https://exa.ai) → Dashboard.
|
|
73
116
|
|
|
74
117
|
### Optional: Basic Memory — real long-term memory
|
|
@@ -1,13 +1,45 @@
|
|
|
1
|
-
# Context7 — Library documentation
|
|
2
|
-
# Provides:
|
|
3
|
-
#
|
|
1
|
+
# Context7 — Library documentation and code examples
|
|
2
|
+
# Provides: resolve-library-id, query-docs
|
|
3
|
+
# Free for basic use (rate-limited). API key for higher limits: https://context7.com/dashboard
|
|
4
4
|
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
5
|
+
# ─── Workflow ───────────────────────────────────────────────────────────
|
|
6
|
+
# Context7 uses a TWO-STEP workflow:
|
|
7
7
|
#
|
|
8
|
-
#
|
|
8
|
+
# Step 1: resolve-library-id → search for library, get Context7 library ID
|
|
9
|
+
# Input: libraryName + query (what you need help with)
|
|
10
|
+
# Output: library ID (e.g. /vercel/next.js), name, snippet count, trust score
|
|
11
|
+
#
|
|
12
|
+
# Step 2: query-docs → fetch documentation and code examples
|
|
13
|
+
# Input: libraryId (from step 1) + query (specific question)
|
|
14
|
+
# Output: relevant code snippets + documentation text
|
|
15
|
+
#
|
|
16
|
+
# Best practices:
|
|
17
|
+
# - Always include language + framework in queries (e.g. "React useState hook examples")
|
|
18
|
+
# - Be specific: "How to set up JWT auth in Express.js" > "auth"
|
|
19
|
+
# - Select libraries by: name match > trust score > snippet count > benchmark score
|
|
20
|
+
# - Max 3 resolve-library-id calls per question; use best result if not found
|
|
21
|
+
# - Max 3 query-docs calls per question; combine results if needed
|
|
22
|
+
#
|
|
23
|
+
# ─── Setup Options ──────────────────────────────────────────────────────
|
|
24
|
+
#
|
|
25
|
+
# Option A — STDIO (recommended, no API key required for basic use):
|
|
26
|
+
# codex mcp add context7 -- npx -y @upstash/context7-mcp
|
|
27
|
+
#
|
|
28
|
+
# Option B — STDIO with API key (higher rate limits):
|
|
29
|
+
# [mcp_servers.context7]
|
|
30
|
+
# command = "npx"
|
|
31
|
+
# args = ["-y", "@upstash/context7-mcp"]
|
|
32
|
+
#
|
|
33
|
+
# [mcp_servers.context7.env]
|
|
34
|
+
# CONTEXT7_API_KEY = "your-key-here"
|
|
35
|
+
#
|
|
36
|
+
# Option C — HTTP remote (alternative transport):
|
|
37
|
+
# [mcp_servers.context7]
|
|
38
|
+
# url = "https://mcp.context7.com/mcp"
|
|
39
|
+
# env_http_headers = { "CONTEXT7_API_KEY" = "CONTEXT7_API_KEY" }
|
|
40
|
+
#
|
|
41
|
+
# Add to ~/.codex/config.toml (NOT project-level config):
|
|
9
42
|
|
|
10
43
|
[mcp_servers.context7]
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
startup_timeout_ms = 20_000
|
|
44
|
+
command = "npx"
|
|
45
|
+
args = ["-y", "@upstash/context7-mcp"]
|
|
@@ -1,7 +1,40 @@
|
|
|
1
|
-
# Exa — Web search and
|
|
2
|
-
# Provides: exa_web_search_exa, exa_get_code_context_exa
|
|
1
|
+
# Exa — Web search, code context, and deep research
|
|
3
2
|
# Requires: EXA_API_KEY (get from https://exa.ai → Dashboard)
|
|
4
3
|
#
|
|
4
|
+
# ─── Available Tools ────────────────────────────────────────────────────
|
|
5
|
+
#
|
|
6
|
+
# Default (always enabled):
|
|
7
|
+
# web_search_exa — General web search with clean content extraction
|
|
8
|
+
# get_code_context_exa — Code snippets from GitHub, StackOverflow, official docs
|
|
9
|
+
#
|
|
10
|
+
# Optional (enable via ?tools= URL parameter):
|
|
11
|
+
# crawling_exa — Read full page content from a specific URL
|
|
12
|
+
# deep_search_exa — Query expansion + synthesized multi-source answers
|
|
13
|
+
# company_research_exa — Company profile lookup (funding, headcount, tech stack)
|
|
14
|
+
# linkedin_search_exa — LinkedIn profile search
|
|
15
|
+
# deep_researcher_start — Start async deep research job
|
|
16
|
+
# deep_researcher_check — Check deep research job status and results
|
|
17
|
+
#
|
|
18
|
+
# ─── Recommended Configurations ─────────────────────────────────────────
|
|
19
|
+
#
|
|
20
|
+
# Minimal (daily development — fastest, lowest cost):
|
|
21
|
+
# url = "https://mcp.exa.ai/mcp"
|
|
22
|
+
#
|
|
23
|
+
# Research (scout agent — adds page crawling and deep search):
|
|
24
|
+
# url = "https://mcp.exa.ai/mcp?tools=web_search_exa,get_code_context_exa,crawling_exa,deep_search_exa"
|
|
25
|
+
#
|
|
26
|
+
# Full (all tools enabled):
|
|
27
|
+
# url = "https://mcp.exa.ai/mcp?tools=web_search_exa,get_code_context_exa,crawling_exa,deep_search_exa,company_research_exa,linkedin_search_exa"
|
|
28
|
+
#
|
|
29
|
+
# ─── Best Practices ─────────────────────────────────────────────────────
|
|
30
|
+
#
|
|
31
|
+
# - web_search_exa: general queries, news, trends, current info
|
|
32
|
+
# - get_code_context_exa: programming questions, API usage, library examples
|
|
33
|
+
# - crawling_exa: when you have a specific URL and need full page content
|
|
34
|
+
# - deep_search_exa: complex questions needing multi-source synthesis
|
|
35
|
+
# - Use numResults=5-8 for focused queries, 10+ for broad exploration
|
|
36
|
+
# - Include year in search queries for current info (e.g. "React 19 features 2026")
|
|
37
|
+
#
|
|
5
38
|
# Keep the key in your shell or .codex/.env, then launch Codex with:
|
|
6
39
|
# codexkit run
|
|
7
40
|
#
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## Vision
|
|
4
4
|
|
|
5
|
+
- Describe the long-term purpose of this project.
|
|
6
|
+
|
|
5
7
|
## Goals
|
|
6
8
|
|
|
9
|
+
- List near-term and durable goals here.
|
|
10
|
+
|
|
7
11
|
## Success Criteria
|
|
8
12
|
|
|
13
|
+
- Define what "done" or "successful" looks like.
|
|
14
|
+
|
|
9
15
|
## Context Notes
|
|
16
|
+
|
|
17
|
+
- Add any additional project context or constraints here.
|