hyper-pm-mcp 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/dist/main.mjs +14 -0
  2. package/package.json +4 -4
package/dist/main.mjs CHANGED
@@ -21082,6 +21082,20 @@ var envSchema = external_exports.object({
21082
21082
  HYPER_PM_AI_API_KEY: external_exports.string().optional(),
21083
21083
  /** Optional override for hyper-pm JSONL event `actor` on CLI mutations. */
21084
21084
  HYPER_PM_ACTOR: external_exports.string().optional(),
21085
+ /**
21086
+ * Optional `git user.name` for hyper-pm data-branch commits when repo git
21087
+ * identity is unset (falls back after `GIT_AUTHOR_*`, then a built-in default).
21088
+ */
21089
+ HYPER_PM_GIT_USER_NAME: external_exports.string().optional(),
21090
+ /**
21091
+ * Optional `git user.email` for hyper-pm data-branch commits when repo git
21092
+ * identity is unset (falls back after `GIT_AUTHOR_*`, then a built-in default).
21093
+ */
21094
+ HYPER_PM_GIT_USER_EMAIL: external_exports.string().optional(),
21095
+ /** Standard Git override for commit author name (optional). */
21096
+ GIT_AUTHOR_NAME: external_exports.string().optional(),
21097
+ /** Standard Git override for commit author email (optional). */
21098
+ GIT_AUTHOR_EMAIL: external_exports.string().optional(),
21085
21099
  /**
21086
21100
  * Absolute path to the hyper-pm CLI bundle (`main.cjs`) for hyper-pm-mcp and
21087
21101
  * other integrations when auto-resolution from the `hyper-pm` package is insufficient.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hyper-pm-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "stdio MCP server that runs the hyper-pm CLI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  "@modelcontextprotocol/sdk": "^1.29.0",
23
23
  "ajv": "^8.17.1",
24
24
  "ajv-formats": "^3.0.1",
25
- "hyper-pm": "^0.1.3"
25
+ "hyper-pm": "^0.1.5"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^20.19.9",
@@ -31,10 +31,10 @@
31
31
  "eslint": "^9.32.0",
32
32
  "typescript": "^5.9.2",
33
33
  "vitest": "^4.0.18",
34
+ "@workspace/env": "0.0.0",
34
35
  "@workspace/eslint-config": "0.0.0",
35
- "@workspace/hyper-pm-cli-runner": "0.0.0",
36
36
  "@workspace/typescript-config": "0.0.0",
37
- "@workspace/env": "0.0.0"
37
+ "@workspace/hyper-pm-cli-runner": "0.0.0"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "rm -rf dist && esbuild src/main.ts --bundle --platform=node --format=esm --outfile=dist/main.mjs",