holycodex 0.4.3 → 0.4.5
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/README.md +1 -1
- package/package.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/agents/explorer.toml +1 -1
- package/plugin/agents/librarian.toml +1 -1
- package/plugin/agents/worker.toml +1 -1
- package/plugin/runtime/cli.js +4 -4
- package/plugin/runtime/core-instructions.js +1 -1
- package/plugin/runtime/git-bash.js +1 -1
- package/plugin/runtime/lsp.js +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -2,5 +2,5 @@ description = "Use for read-only repo research: exact files, symbols, history, o
|
|
|
2
2
|
model = "gpt-5.6-luna"
|
|
3
3
|
model_reasoning_effort = "low"
|
|
4
4
|
developer_instructions = """
|
|
5
|
-
Start: "I detect investigation intent — [reason]. [action]." Inspect only assigned repo scope.
|
|
5
|
+
Start: "I detect investigation intent — [reason]. [action]." Inspect only assigned repo scope. MUST use git_bash MCP for every shell command. Use exec_command only after git_bash MCP is confirmed unavailable; never use it merely by preference or because a command failed. Search, read, diagnose, and inspect history; never edit, install, write externally, or broaden scope. Return exact paths, symbols, evidence, and uncertainty. Stop when question is answered.
|
|
6
6
|
"""
|
|
@@ -2,5 +2,5 @@ description = "Use for read-only external research from current primary sources.
|
|
|
2
2
|
model = "gpt-5.6-luna"
|
|
3
3
|
model_reasoning_effort = "low"
|
|
4
4
|
developer_instructions = """
|
|
5
|
-
Start: "I detect research intent — [reason]. [action]." Research only assigned external scope.
|
|
5
|
+
Start: "I detect research intent — [reason]. [action]." Research only assigned external scope. MUST use git_bash MCP for every shell command. Use exec_command only after git_bash MCP is confirmed unavailable; never use it merely by preference or because a command failed. Prefer current primary sources; never implement, write externally, or broaden scope. Return claims with citations, versions or dates, conflicts, and uncertainty. Stop when question is answered.
|
|
6
6
|
"""
|
|
@@ -2,5 +2,5 @@ description = "Use for isolated, bounded implementation with explicit acceptance
|
|
|
2
2
|
model = "gpt-5.6-luna"
|
|
3
3
|
model_reasoning_effort = "medium"
|
|
4
4
|
developer_instructions = """
|
|
5
|
-
Start: "I detect implementation intent — [reason]. [action]." Change only assigned files and scope; meet stated criteria.
|
|
5
|
+
Start: "I detect implementation intent — [reason]. [action]." Change only assigned files and scope; meet stated criteria. MUST use git_bash MCP for every shell command. Use exec_command only after git_bash MCP is confirmed unavailable; never use it merely by preference or because a command failed. Prompt, skill, or instruction task: load caveman skill first; write terse without losing constraints. Preserve architecture, API, behavior, naming, style, and user work. Make smallest correct change; add no speculative cleanup, abstraction, dependency, or docs. Run smallest proof. Return changed paths, checks, and blockers.
|
|
6
6
|
"""
|
package/plugin/runtime/cli.js
CHANGED
|
@@ -122,7 +122,7 @@ function paths(home = process.env.CODEX_HOME ?? join(homedir(), ".codex")) {
|
|
|
122
122
|
config: join(home, "config.toml"),
|
|
123
123
|
marketplaceCache,
|
|
124
124
|
cacheRoot,
|
|
125
|
-
cache: join(cacheRoot, "0.4.
|
|
125
|
+
cache: join(cacheRoot, "0.4.5"),
|
|
126
126
|
agents: join(home, "holycodex", "agents"),
|
|
127
127
|
legacy: [
|
|
128
128
|
join(home, "plugins", "cache", "sisyphuslabs", "omo"),
|
|
@@ -210,8 +210,8 @@ async function cleanup(_options) {
|
|
|
210
210
|
}
|
|
211
211
|
//#endregion
|
|
212
212
|
//#region src/cli.ts
|
|
213
|
-
var VERSION = "0.4.
|
|
214
|
-
var HELP = `HolyCodex ${VERSION}\n\nUsage: holycodex <install|cleanup> [options]\n\nOptions:\n --help
|
|
213
|
+
var VERSION = "0.4.5";
|
|
214
|
+
var HELP = `HolyCodex ${VERSION}\n\nUsage: holycodex <install|cleanup> [options]\n\nOptions:\n --help Show help\n --version Show version\n --no-tui Accepted; commands are noninteractive\n --codex-autonomous Set autonomous Codex permissions (default)\n --no-codex-autonomous Preserve existing Codex permissions\n --json Print machine-readable result\n`;
|
|
215
215
|
async function main() {
|
|
216
216
|
const args = process$1.argv.slice(2);
|
|
217
217
|
if (args.includes("--help") || args.length === 0) {
|
|
@@ -224,7 +224,7 @@ async function main() {
|
|
|
224
224
|
}
|
|
225
225
|
const command = args.find((arg) => !arg.startsWith("--"));
|
|
226
226
|
const options = {
|
|
227
|
-
autonomous: args.includes("--codex-autonomous"),
|
|
227
|
+
autonomous: !args.includes("--no-codex-autonomous"),
|
|
228
228
|
json: args.includes("--json")
|
|
229
229
|
};
|
|
230
230
|
const result = command === "install" ? await install(options) : command === "cleanup" ? await cleanup(options) : void 0;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
//#region src/core-instructions.ts
|
|
2
|
-
var CORE_INSTRUCTIONS = "HolyCodex: Start first user-facing update: \"I detect [fix/implementation/investigation/question] intent — [reason]. [action].\" Act. Shell: git_bash MCP
|
|
2
|
+
var CORE_INSTRUCTIONS = "HolyCodex: Start first user-facing update: \"I detect [fix/implementation/investigation/question] intent — [reason]. [action].\" Act. Shell: MUST use git_bash MCP for every shell command. Use exec_command only after git_bash MCP is confirmed unavailable; never use it merely by preference or because a command failed. Prompt, skill, or instruction edit: load caveman; preserve constraints. Main agent owns decisions, integration, and verification. Main agent MUST delegate every suitable low-complexity, bounded, independent subtask to reduce cost: explorer=repo facts; librarian=current external facts; worker=isolated implementation. Main agent must not delegate responsibility, trivial work, or tightly coupled work. Delegation reduces cost; it does not create organization. Match reasoning effort to complexity. Use GPT 5.6 Luna for most subagents at low or medium reasoning; GPT 5.6 Terra only for complex subagent work, at low reasoning.";
|
|
3
3
|
//#endregion
|
|
4
4
|
export { CORE_INSTRUCTIONS as t };
|
|
@@ -166,7 +166,7 @@ async function handleGitBashMcpRequest(input, options = {}) {
|
|
|
166
166
|
capabilities: { tools: { listChanged: false } },
|
|
167
167
|
serverInfo: {
|
|
168
168
|
name: "git_bash",
|
|
169
|
-
version: "0.4.
|
|
169
|
+
version: "0.4.5"
|
|
170
170
|
},
|
|
171
171
|
protocolVersion: protocolVersionFromInput(input) ?? "2024-11-05"
|
|
172
172
|
});
|
package/plugin/runtime/lsp.js
CHANGED
|
@@ -3072,7 +3072,7 @@ function coerceToolArguments(value) {
|
|
|
3072
3072
|
//#endregion
|
|
3073
3073
|
//#region packages/lsp-core/src/mcp.ts
|
|
3074
3074
|
var SERVER_NAME = "lsp";
|
|
3075
|
-
var SERVER_VERSION = "0.4.
|
|
3075
|
+
var SERVER_VERSION = "0.4.5";
|
|
3076
3076
|
async function handleLspMcpRequest(input) {
|
|
3077
3077
|
if (!isPlainRecord(input)) return errorResponse(null, -32600, "Invalid Request");
|
|
3078
3078
|
const id = jsonRpcId(input["id"]);
|