@iamdevlinph/codex-kit 1.0.19 → 1.0.21

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/LICENSE CHANGED
@@ -1,6 +1,3 @@
1
- This license applies only to files included in the published
2
- @iamdevlinph/codex-kit npm package. It does not apply to repository-only files.
3
-
4
1
  ISC License
5
2
 
6
3
  Copyright (c) 2026 Devlin Pajaron
package/README.md CHANGED
@@ -246,9 +246,13 @@ standard-library modules.
246
246
 
247
247
  ## License
248
248
 
249
- Files included in the published `@iamdevlinph/codex-kit` npm package are
250
- licensed under the [ISC License](LICENSE). Repository-only files remain
251
- proprietary and are not covered by that license.
249
+ This repository and the published `@iamdevlinph/codex-kit` package are licensed
250
+ under the [ISC License](LICENSE).
251
+
252
+ ## Security
253
+
254
+ See [SECURITY.md](SECURITY.md) for supported versions and private vulnerability
255
+ reporting instructions.
252
256
 
253
257
  ## References
254
258
 
@@ -121,12 +121,16 @@ conditional procedures into validated project skills.
121
121
 
122
122
  ## Structure
123
123
 
124
- - Follow the repository's organization and naming. Prefer focused files and
125
- split mixed responsibilities when readability improves.
124
+ - Follow the repository's organization and naming. Organize feature-specific
125
+ code under the feature's existing directory; when a feature contains multiple
126
+ substantial UI pieces, place them in a `<feature>/components` subdirectory.
127
+ Keep broadly reused code in the repository's established shared locations.
126
128
  - Keep route and page files focused on page-level composition, data loading, and
127
129
  orchestration. Extract substantial self-contained UI sections and complex
128
- page-specific logic into colocated feature components or modules. Keep small
129
- one-use markup inline; do not create components solely to reduce line count.
130
+ page-specific logic into focused files colocated with the feature. Split large
131
+ or mixed-responsibility files by cohesive behavior so each file remains easy
132
+ to read, navigate, test, and review. Keep small one-use markup or logic inline;
133
+ do not create files or components solely to reduce line count.
130
134
  - Use intent-revealing domain names. A reader should understand what a variable
131
135
  contains or what a helper guarantees at the call site without opening its
132
136
  implementation. Avoid vague transformation names such as `normalized`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iamdevlinph/codex-kit",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "description": "Portable Codex subagents and project AGENTS.md defaults.",
5
5
  "type": "module",
6
6
  "bin": {