codexkit 1.0.1 → 1.0.3

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.
Files changed (38) hide show
  1. package/.codex/.template-manifest.json +32 -24
  2. package/.codex/.version +1 -1
  3. package/.codex/agents/builder.toml +6 -1
  4. package/.codex/agents/debugger.toml +1 -0
  5. package/.codex/agents/general.toml +6 -1
  6. package/.codex/agents/painter.toml +1 -0
  7. package/.codex/agents/planner.toml +1 -0
  8. package/.codex/agents/refactorer.toml +1 -0
  9. package/.codex/agents/reviewer.toml +1 -0
  10. package/.codex/agents/runner.toml +1 -0
  11. package/.codex/agents/scout.toml +1 -0
  12. package/.codex/agents/shipper.toml +1 -0
  13. package/.codex/agents/vision.toml +1 -0
  14. package/.codex/config.toml +8 -3
  15. package/.codex/mcp/README.md +19 -3
  16. package/.codex/mcp/context7.toml.example +25 -8
  17. package/.codex/mcp/exa.toml.example +8 -1
  18. package/.codex/prompts/create.md +63 -26
  19. package/.codex/prompts/init.md +24 -0
  20. package/.codex/prompts/ship.md +36 -25
  21. package/.codex/prompts/start.md +2 -2
  22. package/.codex/prompts/ui-slop-check.md +119 -0
  23. package/.codex/scripts/start_bead.sh +9 -5
  24. package/.codex/scripts/verify_bead.sh +18 -6
  25. package/.codex/skills/frontend-design/SKILL.md +137 -55
  26. package/.codex/skills/frontend-design/references/color-system.md +125 -0
  27. package/.codex/skills/frontend-design/references/interaction.md +115 -0
  28. package/.codex/skills/frontend-design/references/motion-core.md +102 -0
  29. package/.codex/skills/frontend-design/references/responsive-design.md +104 -0
  30. package/.codex/skills/frontend-design/references/spatial-design.md +103 -0
  31. package/.codex/skills/frontend-design/references/typography-rules.md +118 -0
  32. package/.codex/skills/frontend-design/references/ux-writing.md +105 -0
  33. package/.template-manifest.json +32 -24
  34. package/AGENTS.md +3 -3
  35. package/CHANGELOG.md +33 -0
  36. package/README.md +3 -1
  37. package/bin/codexkit +20 -1
  38. package/package.json +1 -1
@@ -0,0 +1,105 @@
1
+ # UX Writing
2
+
3
+ > Reference for the `frontend-design` skill. Covers microcopy voice, button labels, error messaging, and empty states.
4
+ > Adapted from [pbakaus/impeccable](https://github.com/pbakaus/impeccable) (Apache 2.0).
5
+
6
+ ## The Button Label Problem
7
+
8
+ **Never use "OK", "Submit", or "Yes/No".** Use specific verb + object patterns:
9
+
10
+ | Bad | Good | Why |
11
+ |-----|------|-----|
12
+ | OK | Save changes | Says what will happen |
13
+ | Submit | Create account | Outcome-focused |
14
+ | Yes | Delete message | Confirms the action |
15
+ | Cancel | Keep editing | Clarifies what "cancel" means |
16
+ | Click here | Download PDF | Describes the destination |
17
+
18
+ **For destructive actions**, name the destruction:
19
+ - "Delete" not "Remove" (delete is permanent, remove implies recoverable)
20
+ - "Delete 5 items" not "Delete selected" (show the count)
21
+
22
+ ## Error Messages: The Formula
23
+
24
+ Every error message should answer: (1) What happened? (2) Why? (3) How to fix it?
25
+
26
+ ### Error Message Templates
27
+
28
+ | Situation | Template |
29
+ |-----------|----------|
30
+ | **Format error** | "[Field] needs to be [format]. Example: [example]" |
31
+ | **Missing required** | "Please enter [what's missing]" |
32
+ | **Permission denied** | "You don't have access to [thing]. [What to do instead]" |
33
+ | **Network error** | "We couldn't reach [thing]. Check your connection and [action]." |
34
+ | **Server error** | "Something went wrong on our end. We're looking into it. [Alternative action]" |
35
+
36
+ ### Don't Blame the User
37
+
38
+ Reframe errors: "Please enter a date in MM/DD/YYYY format" not "You entered an invalid date".
39
+
40
+ ## Empty States Are Opportunities
41
+
42
+ Empty states are onboarding moments: (1) Acknowledge briefly, (2) Explain the value of filling it, (3) Provide a clear action. "No projects yet. Create your first one to get started." not just "No items".
43
+
44
+ ## Voice vs Tone
45
+
46
+ **Voice** is your brand's personality — consistent everywhere. **Tone** adapts to the moment.
47
+
48
+ | Moment | Tone Shift |
49
+ |--------|------------|
50
+ | Success | Celebratory, brief: "Done! Your changes are live." |
51
+ | Error | Empathetic, helpful: "That didn't work. Here's what to try..." |
52
+ | Loading | Reassuring: "Saving your work..." |
53
+ | Destructive confirm | Serious, clear: "Delete this project? This can't be undone." |
54
+
55
+ **Never use humor for errors.** Users are already frustrated. Be helpful, not cute.
56
+
57
+ ## Writing for Accessibility
58
+
59
+ **Link text** must have standalone meaning — "View pricing plans" not "Click here". **Alt text** describes information, not the image — "Revenue increased 40% in Q4" not "Chart". Use `alt=""` for decorative images. **Icon buttons** need `aria-label` for screen reader context.
60
+
61
+ ## Writing for Translation
62
+
63
+ ### Plan for Expansion
64
+
65
+ German text is ~30% longer than English:
66
+
67
+ | Language | Expansion |
68
+ |----------|-----------|
69
+ | German | +30% |
70
+ | French | +20% |
71
+ | Finnish | +30-40% |
72
+ | Chinese | -30% (fewer chars, but same width) |
73
+
74
+ ### Translation-Friendly Patterns
75
+
76
+ Keep numbers separate ("New messages: 3" not "You have 3 new messages"). Use full sentences as single strings (word order varies by language). Avoid abbreviations. Give translators context about where strings appear.
77
+
78
+ ## Consistency: The Terminology Problem
79
+
80
+ Pick one term and stick with it:
81
+
82
+ | Inconsistent | Consistent |
83
+ |--------------|------------|
84
+ | Delete / Remove / Trash | Delete |
85
+ | Settings / Preferences / Options | Settings |
86
+ | Sign in / Log in / Enter | Sign in |
87
+ | Create / Add / New | Create |
88
+
89
+ Build a terminology glossary and enforce it.
90
+
91
+ ## Avoid Redundant Copy
92
+
93
+ If the heading explains it, the intro is redundant. If the button is clear, don't explain it again. Say it once, say it well.
94
+
95
+ ## Loading States
96
+
97
+ Be specific: "Saving your draft..." not "Loading...". For long waits, set expectations ("This usually takes 30 seconds") or show progress.
98
+
99
+ ## Confirmation Dialogs: Use Sparingly
100
+
101
+ Most confirmation dialogs are design failures — consider undo instead. When you must confirm: name the action, explain consequences, use specific button labels ("Delete project" / "Keep project", not "Yes" / "No").
102
+
103
+ ---
104
+
105
+ **Avoid**: Jargon without explanation. Blaming users. Vague errors ("Something went wrong"). Varying terminology for variety. Humor for errors.
@@ -1,43 +1,44 @@
1
1
  {
2
- "version": "1.0.1",
2
+ "version": "1.0.3",
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": "4f87b2685b6daefea111792f5845388f7f0bbc2c0153d1d4c7428f795d437274",
9
+ ".codex/config.toml": "32644bd80c9804612a851907c900ccc2edd84683a3470b224d173e29ee318a6a",
10
10
  ".codex/.env.example": "1827612829279fad025404b763ea214412bd5cd53474ad315909a8c275f12b84",
11
- ".codex/.version": "44e161e4495cac2cf7858043e9e6418e9579f0ddcfae826f9a372622968ce066",
12
- ".codex/agents/builder.toml": "90da25e01967639be3d7b5a204be69d1dfa67ea3fea2d6bf93e0deb7be3bbb8b",
13
- ".codex/agents/debugger.toml": "d709c5f64ae2ec8ee901766441b9687ce9ea40d5a8966aec594d757dc5327d9e",
14
- ".codex/agents/general.toml": "a2fa240c01bcc33272c585d1bfa996cf1c0686204b7cc909f0fd1cdad1f5c830",
15
- ".codex/agents/painter.toml": "3f537a94344dd5ed6787b907f85a14962b4ee9a29a003d53d94e06a5f1703f38",
16
- ".codex/agents/planner.toml": "3d1fcc13de5d9cc74b9cfbe74850198d31f2ec6600728ae9d765cdc25400344f",
17
- ".codex/agents/refactorer.toml": "70e8b8a1719941608ce769fa0272b49b0f7a06ad0c6b0d456a4f1dc1a271f6c1",
18
- ".codex/agents/reviewer.toml": "3aa6d01c470f0c336c2d4e21a759ebcaaa3569707e4148eb9dbc777a85cc65dc",
19
- ".codex/agents/runner.toml": "5012edd1d0fbd2ea161f6fbfd039b6bfd0588574dd92ad0fb3d1fc298c96e776",
20
- ".codex/agents/scout.toml": "d91ba06a4bf2d3a7e8fca3a9f9706d3fc80ff8cf32943535f9a2a49df6ddd8c8",
21
- ".codex/agents/shipper.toml": "5ec8eb612dd893b4e56a42867dcfdfbcbb3d7df7edf24b48629fe05062004e2b",
22
- ".codex/agents/vision.toml": "b396ef6e6ded4b88326d4537bc771b8d4212ce63fbbd8503081e77667448b7ae",
11
+ ".codex/.version": "f5e5c9534532840fcd45bb002e69ed85c61dba2753450e26b448b7df1481e24d",
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": "e06fa68c87261d0bfa8f2e61f34117f2291702236ca98df49d25b2faedeaf55c",
21
+ ".codex/agents/shipper.toml": "940c3ffd2c467e11def4c4d87bae4c5244deee42bc48009cabbf1a07009eac4b",
22
+ ".codex/agents/vision.toml": "430a3b9ae1f8d2322791b2683ea7cf1ca5dad353f00f2b6c2c09fd8bfe9acbe4",
23
23
  ".codex/prompts/compound.md": "2f3f713031c6a2591cf257a47f8909874ff0f94cf7a6663eeb8fe30fc1ae2a2e",
24
- ".codex/prompts/create.md": "83216a93dcedfcd2e599e4fe6e1aa20c846bbc80d36ca85cf10b2f1adc0cde1a",
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": "ec8750b029e9376bb7b085863658113624c0378c4129aa4e72a3aa75000e0e9f",
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
34
  ".codex/prompts/resume.md": "e3d9c00cb1eb05eb367f627a039c0519c694458cf5be83b5ed9873e623e4c8e3",
35
35
  ".codex/prompts/review-codebase.md": "07f6ea450c02f820871edb2c5432d364dfa8e87bd662f13ba305ccb2cc25a5de",
36
- ".codex/prompts/ship.md": "422e001f19490faa1d751c35c11825c8c77f5302eaef333bccce59a5816a6e56",
37
- ".codex/prompts/start.md": "a85e5dd88f597f814cd2ebd97e0030aced0d460de3f095f0f4e3980ea87c030a",
36
+ ".codex/prompts/ship.md": "bf0eee8272c2ffab78574aef940be07e7dcf4129b7aa9d1368d850be16cde099",
37
+ ".codex/prompts/start.md": "4abc1166ae6657070ec3162610504e8e4ba19df595e4552fe30bae70561999e3",
38
38
  ".codex/prompts/status.md": "c742f0b64b08f59fceb3eb90e1693a81de421c2311eb553f85793faed19e1bca",
39
39
  ".codex/prompts/ui-inspire.md": "4562892c1b3600d5b936cb5f62f3a45cd2d48dfba16f02a26de9d087e2b15ed6",
40
40
  ".codex/prompts/ui-review.md": "4b33aa90df5e6bed0a2a5d9a077b8a778577cb0271b3a03a3f41587b6132db09",
41
+ ".codex/prompts/ui-slop-check.md": "19e9888ad59cd74ffeb0352b0ea813a8642320774bcdd0b34877e29ae3672e14",
41
42
  ".codex/prompts/verify.md": "d38dc229c7565c5c9a45869a1a5d17f1c3f6f5fee2f2e94ffe7ac10f9837a2e5",
42
43
  ".codex/skills/accessibility-audit/SKILL.md": "7cab0faa18ead1d87b62cb33a1f6774d9a485bf570a9b4c3538d811993eefc80",
43
44
  ".codex/skills/agent-browser/SKILL.md": "953a56fe1c7b40dd16842935f72f91b05bd25635e18196969bce982b7f8ae82a",
@@ -355,7 +356,14 @@
355
356
  ".codex/skills/figma/SKILL.md": "d9799488d3b8db3b86d633627320fea3ed6deafa11e573a0d4b9aa8e78c50ceb",
356
357
  ".codex/skills/figma/mcp.json": "1268189eaf6051544d129c9fec82454bb7df4101d22231c65f9a75e5bc1b98d6",
357
358
  ".codex/skills/finishing-a-development-branch/SKILL.md": "df9295cc756c22775779b7700997ea432b9aafab36d739c8d0b72db25d2e162f",
358
- ".codex/skills/frontend-design/SKILL.md": "938575973881f39427dc9f07db72a9bda60d79d62fe8ffffb2eea2db4ef7095a",
359
+ ".codex/skills/frontend-design/SKILL.md": "f7ced66f8871c2015fcdc47fc699012fa515a10763de803cd52d9926e6d3f5c5",
360
+ ".codex/skills/frontend-design/references/color-system.md": "c602d11206390802a502592ed2035b964dfc0dada9b61558426752f36b5dda34",
361
+ ".codex/skills/frontend-design/references/interaction.md": "98f7f7f5021150eec6e44ede1b9b8c97c025da655dfcea7106dd6ce65569f059",
362
+ ".codex/skills/frontend-design/references/motion-core.md": "03ae880a0639e4add78a9dd9974b04eab09a0d43292361e86e53b4c8262b814d",
363
+ ".codex/skills/frontend-design/references/responsive-design.md": "38a2c5cad62b3384a56f756942fe13856c0dd164f37abdfaf3181ccd6d8bf685",
364
+ ".codex/skills/frontend-design/references/spatial-design.md": "e773f1d77a62696371ed680d58bb78cb94bd16d66e0976b683eb483dfd738a7e",
365
+ ".codex/skills/frontend-design/references/typography-rules.md": "9e8d063ce1ef57755b0231e937c05e0b4501a18c00034b7f9d89d1fcfca16d67",
366
+ ".codex/skills/frontend-design/references/ux-writing.md": "f0ccd5432eab0b4e8b4ccf38a17551c833df15e14a59c7a9011f45f34d9c3c3c",
359
367
  ".codex/skills/gemini-large-context/SKILL.md": "9851f1ced0c4bd99f6021cd4bf8c90ac445da25026ed96c99e8c6f38929cea7f",
360
368
  ".codex/skills/git-pr-prep/SKILL.md": "57e48b83fb11101c1376e727f39332500bbc416838f0e20e4d72d87de2ea6f3a",
361
369
  ".codex/skills/index-knowledge/SKILL.md": "b1188ba08c583d346be20d8efb0f72f834c968ff5fc708e0f04fdc32aa4d9952",
@@ -587,14 +595,14 @@
587
595
  ".codex/scripts/memory_search.sh": "4c94a2785ce337f981aa234c8b3a935af9de42117cfbacf979c078718ac9952c",
588
596
  ".codex/scripts/prepare_worklog_archive.sh": "51d606d69a0e6c73d0e1978cbdcdb581ee9187391bcf8dfbf181d55306edc16f",
589
597
  ".codex/scripts/search_bead_context.sh": "c2040a7eb6039db278422045196333f70a520f0a6ff2843c5fa06cc08f424060",
590
- ".codex/scripts/start_bead.sh": "076381f9678d1043711f8dfe6a3416317c054ffb83930e233596190b604127fe",
598
+ ".codex/scripts/start_bead.sh": "2c86e405df67d2f0dc6d3a616c2a92a13984c2745cbf5c5d5ab4b25a90584eb2",
591
599
  ".codex/scripts/sync_bead_context.sh": "6b8d6908cffbbf8fdbf5bf548e09788d504daddce092bd7112eee695882a64a7",
592
600
  ".codex/scripts/validate_memory_docs.sh": "a0a2b184db21dae92c88a0ea837be8bcaf7a47150392034d3110842f266c4afc",
593
- ".codex/scripts/verify_bead.sh": "0d943a1020d77d47d73b4a779f8aed3eea6995c886e7b98ca4ea8ba3a55dc806",
594
- ".codex/mcp/README.md": "e258fb621cdb86fa1e7ff2d9ea6c04d134e22af6fafe88abf6e2ef7d579196a4",
601
+ ".codex/scripts/verify_bead.sh": "16571365aa54f300ec2554573f13bd74c37b22bfc54e1c09d5b55553855a0add",
602
+ ".codex/mcp/README.md": "06c66bf958de327cdb3e14367beb4ad7d82d1ba4a93eb4a2191fe134678ba430",
595
603
  ".codex/mcp/basic-memory.toml.example": "b40ef19861a8f29d3d78d7b166474cc4d44e79362bf5fc81942754609ff4ee3c",
596
- ".codex/mcp/context7.toml.example": "bc8c1628d16f8675617692c1766d455b9d4c08e7caf42ca575ff9f6f25867af0",
597
- ".codex/mcp/exa.toml.example": "81433f4660aca0480d5513d62a19e1321a0d3a650991689eb5d4ac56eddb64ca",
604
+ ".codex/mcp/context7.toml.example": "d016f67a43a1e578bb2c0311ba61a6e63e58aff3dc783b084eb082141f79a42b",
605
+ ".codex/mcp/exa.toml.example": "7aea5ab1c227ca3cf4ca9c976ec270897f39526954e8618c89764a47ec23f69b",
598
606
  ".codex/mcp/memory-bridge.toml.example": "3689f1b04410463c2e648e437e16c30901a7b1c5e165255e03b3552c9a4b03e8",
599
607
  ".codex/mcp/memory.toml.example": "3c5575ebd822729023220c7a6c7f7a6a7e0ac9e43edbf7e0665d4e06938fb8e7",
600
608
  ".codex/mcp/ref.toml.example": "a7a5d84b04f9d7a35282e91eb45111a0d7ddb185cdc8326461a8306d9b5d802b",
package/AGENTS.md CHANGED
@@ -117,19 +117,19 @@ When multiple agents or sub-agents work on the same codebase:
117
117
  ### Multi-Agent Configuration
118
118
 
119
119
  ```toml
120
- [features]
121
- multi_agent = true
120
+ # multi_agent is enabled by default since Codex v0.115.0
122
121
 
123
122
  [agents]
124
123
  max_threads = 6 # Max concurrent agent threads
125
124
  max_depth = 1 # Prevent recursive spawning
125
+ # job_max_runtime_seconds = 1800 # Per-worker timeout for spawn_agents_on_csv
126
126
  ```
127
127
 
128
128
  ### Agent Spawning Protocol
129
129
 
130
130
  1. **Assess independence** — parallel only if tasks are file-disjoint
131
131
  2. **Spawn with role** — use appropriate agent role (explorer, worker, planner, etc.)
132
- 3. **Wait for completion** — use `wait` tool for long-running agents
132
+ 3. **Wait for completion** — use `wait_agent` tool for long-running agents
133
133
  4. **Verify results** — read changed files directly after agent returns
134
134
  5. **Close agents** — always close completed agent threads
135
135
 
package/CHANGELOG.md CHANGED
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.3] — 2026-03-17
11
+
12
+ ### Added
13
+
14
+ - `name` field to all 11 custom agent TOML files for standalone discovery (Codex CLI v0.115.0 compliance)
15
+ - Frontend-design skill v1.1.0 with AI Slop Taxonomy — 12 anti-pattern checks and 7 domain-specific reference files (color-system, typography-rules, motion-core, interaction, ux-writing, spatial-design, responsive-design). Inspired by [pbakaus/impeccable](https://github.com/pbakaus/impeccable) (Apache 2.0)
16
+ - New `/prompts:ui-slop-check` command for automated AI aesthetic fingerprint auditing
17
+ - `agents.job_max_runtime_seconds` setting documented in config.toml and AGENTS.md
18
+ - Workflow validation test suite (`test_workflow_fixes.sh`, `validate_workflow.sh`)
19
+
20
+ ### Changed
21
+
22
+ - Context7 MCP config now recommends STDIO transport as primary (no API key required for basic use); HTTP kept as documented fallback
23
+ - `multi_agent` feature flag commented out — enabled by default since Codex CLI v0.115.0
24
+ - Agent tool reference updated from `wait` to `wait_agent` in AGENTS.md
25
+ - Exa MCP example now documents 6 additional tools available via `?tools=` URL parameter
26
+ - `docs/agents.md` updated with new standalone agent file format, `nickname_candidates`, `report_agent_job_result`, and `gpt-5.3-codex-spark` model tip
27
+ - `docs/mcp.md` HTTP syntax section updated to match official Codex docs (`startup_timeout_sec`, `http_headers`, Streamable HTTP label)
28
+ - Config.toml agents comment updated to reference `https://developers.openai.com/codex/subagents` and acknowledge dual discovery/registration pattern
29
+ - Prompt count updated from 19 to 20 across README, release-checklist, and migration-map
30
+
31
+ ### Fixed
32
+
33
+ - `init.md` now documents the runtime-enforced Read-before-Write/Edit guard for generated AGENTS.md files
34
+ - `builder.toml` and `general.toml` developer instructions expanded with runtime guard context and Edit vs Write guidance
35
+
36
+ ## [1.0.2] — 2026-03-15
37
+
38
+ ### Fixed
39
+
40
+ - Global launcher path resolution now follows symlinks correctly, fixing `codexkit install` and `codexkit version` when the CLI is installed through Bun-linked global bins on macOS
41
+ - Added regression coverage for symlinked launcher execution in the CLI integration test
42
+
10
43
  ## [1.0.1] — 2026-03-15
11
44
 
12
45
  ### Fixed
package/README.md CHANGED
@@ -198,7 +198,7 @@ See [docs/profiles.md](docs/profiles.md) for detailed descriptions and customiza
198
198
 
199
199
  ## Prompts
200
200
 
201
- 19 structured workflow entry points — the **"what"** of your development process.
201
+ 20 structured workflow entry points — the **"what"** of your development process.
202
202
 
203
203
  > **Note:** Codex prompt discovery is user-scoped at `~/.codex/prompts`. `codexkit install` bootstraps that prompt directory automatically for the current user, while `codexkit install-global` installs the full shared inventory.
204
204
 
@@ -219,6 +219,7 @@ See [docs/profiles.md](docs/profiles.md) for detailed descriptions and customiza
219
219
  | **Design** | `ui-inspire` | Search external UI references grounded in repo patterns |
220
220
  | | `design` | UI/UX visual design with code output |
221
221
  | | `ui-review` | Review UI/UX for quality and accessibility |
222
+ | | `ui-slop-check` | Audit for AI aesthetic fingerprints with actionable fixes |
222
223
  | **Session** | `handoff` | Save progress and context for next session |
223
224
  | | `resume` | Resume work from a previous session |
224
225
  | | `status` | Show project status dashboard |
@@ -446,6 +447,7 @@ codexkit/
446
447
  │ │ ├── ui-inspire.md
447
448
  │ │ ├── design.md
448
449
  │ │ ├── ui-review.md
450
+ │ │ ├── ui-slop-check.md
449
451
  │ │ ├── handoff.md
450
452
  │ │ ├── resume.md
451
453
  │ │ ├── status.md
package/bin/codexkit CHANGED
@@ -1,7 +1,26 @@
1
1
  #!/bin/bash
2
2
  set -euo pipefail
3
3
 
4
- SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
4
+ resolve_script_path() {
5
+ local source="${BASH_SOURCE[0]:-$0}"
6
+ local dir target
7
+
8
+ while [ -L "$source" ]; do
9
+ dir="$(cd "$(dirname "$source")" && pwd)"
10
+ target="$(readlink "$source")"
11
+ if [[ "$target" = /* ]]; then
12
+ source="$target"
13
+ else
14
+ source="$dir/$target"
15
+ fi
16
+ done
17
+
18
+ dir="$(cd "$(dirname "$source")" && pwd)"
19
+ printf '%s\n' "$dir/$(basename "$source")"
20
+ }
21
+
22
+ SCRIPT_PATH="$(resolve_script_path)"
23
+ SCRIPT_DIR="$(cd "$(dirname "$SCRIPT_PATH")" && pwd)"
5
24
  REPO_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
6
25
 
7
26
  usage() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexkit",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Professional configuration kit for OpenAI Codex CLI",
5
5
  "license": "MIT",
6
6
  "keywords": [