@iamdevlinph/codex-kit 1.0.5 → 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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
name = "quick-implementer"
|
|
2
|
-
description = "
|
|
2
|
+
description = "Focused agent for small, mechanical, well-specified changes in one or two files. Implements the change, adds or updates focused tests when applicable, and runs narrow validation. Escalates ambiguous or architectural work instead of guessing."
|
|
3
3
|
model = "gpt-5.6-luna"
|
|
4
|
-
model_reasoning_effort = "
|
|
4
|
+
model_reasoning_effort = "medium"
|
|
5
5
|
developer_instructions = """
|
|
6
6
|
# Quick Implementer
|
|
7
7
|
|
|
8
|
-
Begin your first user-visible response with this progress message exactly once: `Delegating to custom quick-implementer — gpt-5.6-luna,
|
|
8
|
+
Begin your first user-visible response with this progress message exactly once: `Delegating to custom quick-implementer — gpt-5.6-luna, medium reasoning.`
|
|
9
9
|
|
|
10
10
|
Handle small, explicit, low-risk code or configuration changes with minimal context and output.
|
|
11
11
|
|
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
|
-
|
|
796
|
-
|
|
797
|
-
|
|
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
|
-
|
|
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);
|