@evo-dev/evodev 0.0.1-alpha.7 → 0.0.1-alpha.8
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/dist/.claude-plugin/marketplace.json +2 -2
- package/dist/index.js +1 -1
- package/dist/plugins/evodev/.claude-plugin/plugin.json +1 -1
- package/dist/plugins/evodev/.codex-plugin/plugin.json +1 -1
- package/dist/plugins/evodev/package.json +1 -1
- package/package.json +2 -2
- package/dist/evodev +0 -11
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"name": "EvoDev"
|
|
5
5
|
},
|
|
6
6
|
"description": "EvoDev Claude Code hook plugins for AI-assisted R&D workflows.",
|
|
7
|
-
"version": "0.0.1-alpha.
|
|
7
|
+
"version": "0.0.1-alpha.8",
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "evodev",
|
|
11
11
|
"source": "./packages/plugin",
|
|
12
12
|
"description": "EvoDev hook integration for disciplined AI coding workflows.",
|
|
13
|
-
"version": "0.0.1-alpha.
|
|
13
|
+
"version": "0.0.1-alpha.8",
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "EvoDev"
|
|
16
16
|
},
|
package/dist/index.js
CHANGED
|
@@ -27842,7 +27842,7 @@ function getHelpText() {
|
|
|
27842
27842
|
].join(`
|
|
27843
27843
|
`);
|
|
27844
27844
|
}
|
|
27845
|
-
var CLI_VERSION = "0.0.1-alpha.
|
|
27845
|
+
var CLI_VERSION = "0.0.1-alpha.8";
|
|
27846
27846
|
function getVersionText() {
|
|
27847
27847
|
return `evodev ${CLI_VERSION}`;
|
|
27848
27848
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evo-dev/evodev",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.8",
|
|
4
4
|
"description": "AI Coding infrastructure CLI for real R&D workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"directory": "packages/cli"
|
|
10
10
|
},
|
|
11
11
|
"bin": {
|
|
12
|
-
"evodev": "./dist/
|
|
12
|
+
"evodev": "./dist/index.js"
|
|
13
13
|
},
|
|
14
14
|
"files": ["dist", "package.json"],
|
|
15
15
|
"engines": {
|
package/dist/evodev
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
set -eu
|
|
3
|
-
|
|
4
|
-
if ! command -v node >/dev/null 2>&1; then
|
|
5
|
-
echo "EvoDev CLI requires Node.js >=20 to run." >&2
|
|
6
|
-
echo "Install Node.js, then restart your shell and run: evodev doctor." >&2
|
|
7
|
-
exit 1
|
|
8
|
-
fi
|
|
9
|
-
|
|
10
|
-
SCRIPT_DIR="$(CDPATH= cd "$(dirname "$0")" && pwd)"
|
|
11
|
-
exec node "$SCRIPT_DIR/index.js" "$@"
|