@iamdevlinph/codex-kit 1.0.6 → 1.0.7

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 (2) hide show
  1. package/bin/codex-kit.js +26 -8
  2. package/package.json +1 -1
package/bin/codex-kit.js CHANGED
@@ -791,15 +791,33 @@ Commands:
791
791
  --help Show this help.
792
792
  --version Print the installed version.
793
793
 
794
- Options:
795
- --codex-home PATH Use a Codex home other than CODEX_HOME or ~/.codex.
796
- --cwd PATH Use a project directory other than the current directory.
797
- --force Replace modified files or config managed by codex-kit.
798
- --orchestrator MODEL Set the root/orchestrator model (default: gpt-5.6-sol).
799
- --model MODEL Alias for --orchestrator.
800
- --reasoning-effort LEVEL Set normal and Plan-mode effort (default: high).
794
+ Options by command:
795
+ global install
796
+ --codex-home PATH Use a Codex home other than CODEX_HOME or ~/.codex.
797
+ --force Replace modified files managed by codex-kit.
801
798
 
802
- Run a command with only its applicable options.`);
799
+ global configure
800
+ --codex-home PATH Use a Codex home other than CODEX_HOME or ~/.codex.
801
+ --force Replace modified config managed by codex-kit.
802
+ --orchestrator MODEL Set the root/orchestrator model (default: gpt-5.6-sol).
803
+ --model MODEL Alias for --orchestrator.
804
+ --reasoning-effort LEVEL Set normal and Plan-mode effort (default: high).
805
+
806
+ global list, global uninstall
807
+ --codex-home PATH Use a Codex home other than CODEX_HOME or ~/.codex.
808
+
809
+ project init, project sync
810
+ --cwd PATH Use a project directory other than the current directory.
811
+ --force Replace modified files managed by codex-kit.
812
+
813
+ project status, project mark-applied
814
+ --cwd PATH Use a project directory other than the current directory.
815
+
816
+ Examples:
817
+ codex-kit global install --force
818
+ codex-kit global configure --orchestrator gpt-5.6-sol --reasoning-effort high
819
+ codex-kit project sync --cwd /path/to/project --force
820
+ codex-kit project status --cwd /path/to/project`);
803
821
  }
804
822
  export function main(argv = process.argv.slice(2)) {
805
823
  const options = parse(argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iamdevlinph/codex-kit",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Portable Codex subagents and project AGENTS.md defaults.",
5
5
  "type": "module",
6
6
  "bin": {