holycodex 0.3.0 → 0.3.1

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 CHANGED
@@ -79,20 +79,6 @@ Cleanup backs up affected files, removes only HolyCodex-owned configuration and
79
79
  - `packages/` — Git Bash and LSP MCP source.
80
80
  - `test/` — CLI, lifecycle, catalogue, rules, bootstrap, and MCP tests.
81
81
 
82
- ### Versioning for maintainers
83
-
84
- HolyCodex follows [ZeroVer](https://0ver.org/): versions stay below `1.0.0`; fixes increment the third component, while breaking changes increment the second.
85
-
86
- ```sh
87
- npm run version:check # verify every package/runtime version matches
88
- npm run version:patch # compatible release: 0.2.0 -> 0.2.1
89
- npm run version:minor # breaking release: 0.2.7 -> 0.3.0
90
- npm run version:set -- 0.4.3
91
- node scripts/version.mjs patch --dry-run
92
- ```
93
-
94
- The helper updates the root package, plugin manifest, private workspace packages, CLI/cache version, MCP server versions, and pinned tests together. It does not commit, tag, publish, or push. After a bump, review the diff and run the four checks printed by the command.
95
-
96
82
  ## Thanks
97
83
 
98
84
  HolyCodex exists because of the work of:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Lean Codex-only agent toolkit for ChatGPT Plus",
5
5
  "keywords": [
6
6
  "agents",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holycodex",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Lean Codex-only agents, skills, hooks, and MCP defaults.",
5
5
  "author": {
6
6
  "name": "David Basile Filho",
@@ -120,7 +120,7 @@ function paths(home = process.env.CODEX_HOME ?? join(homedir(), ".codex")) {
120
120
  home,
121
121
  config: join(home, "config.toml"),
122
122
  cacheRoot,
123
- cache: join(cacheRoot, "0.3.0"),
123
+ cache: join(cacheRoot, "0.3.1"),
124
124
  agents: join(home, "holycodex", "agents"),
125
125
  legacy: [
126
126
  join(home, "plugins", "cache", "sisyphuslabs", "omo"),
@@ -208,7 +208,7 @@ async function cleanup(_options) {
208
208
  }
209
209
  //#endregion
210
210
  //#region src/cli.ts
211
- var VERSION = "0.3.0";
211
+ var VERSION = "0.3.1";
212
212
  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\n --json Print machine-readable result\n`;
213
213
  async function main() {
214
214
  const args = process$1.argv.slice(2);
@@ -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.3.0"
169
+ version: "0.3.1"
170
170
  },
171
171
  protocolVersion: protocolVersionFromInput(input) ?? "2024-11-05"
172
172
  });
@@ -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.3.0";
3075
+ var SERVER_VERSION = "0.3.1";
3076
3076
  async function handleLspMcpRequest(input) {
3077
3077
  if (!isPlainRecord(input)) return errorResponse(null, -32600, "Invalid Request");
3078
3078
  const id = jsonRpcId(input["id"]);