forgehive 0.6.0 → 0.6.2
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/cli.js +5 -2
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
#!/usr/bin/env node
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
4
|
var __esm = (fn, res) => function __init() {
|
|
@@ -5586,6 +5585,10 @@ function formatSecurityReport(report) {
|
|
|
5586
5585
|
var [, , command, subcommand, ...rest] = process.argv;
|
|
5587
5586
|
var projectRoot = process.cwd();
|
|
5588
5587
|
var forgehiveDir = path23.join(projectRoot, ".forgehive");
|
|
5588
|
+
if (command === "--version" || command === "-v") {
|
|
5589
|
+
console.log("0.6.1");
|
|
5590
|
+
process.exit(0);
|
|
5591
|
+
}
|
|
5589
5592
|
function loadClaudeMdBlock() {
|
|
5590
5593
|
const templatePath = path23.join(
|
|
5591
5594
|
path23.dirname(new URL(import.meta.url).pathname),
|
|
@@ -6255,7 +6258,7 @@ Setze diese Umgebungsvariablen:`);
|
|
|
6255
6258
|
} else {
|
|
6256
6259
|
const cmd = [command, subcommand].filter(Boolean).join(" ") || "(kein)";
|
|
6257
6260
|
console.error(`Unbekannter Befehl: ${cmd}`);
|
|
6258
|
-
console.error("Verf\xFCgbar: init | confirm | rollback | scan --update | scan --check | memory [show|clean|export] | skills [list|regen] | party [--set <name
|
|
6261
|
+
console.error("Verf\xFCgbar: init | confirm | rollback | scan --update | scan --check | status | cost [today|week|all] | cost --limit N --alert N | memory [show|clean|export|prune|snapshot] | memory adr [list|<titel>] | skills [list|regen|pull <url>] | party [--set <name>|run|status|cleanup] | wire <service> | mcp [auth|search|add] | security [scan|deps|report|audit|permissions]");
|
|
6259
6262
|
process.exit(1);
|
|
6260
6263
|
}
|
|
6261
6264
|
/*! Bundled license information:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "forgehive",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Context-aware AI development environment — one binary, your stack.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"keywords": ["claude", "claude-code", "ai", "mcp", "agents", "context", "forgehive", "development"],
|
|
12
12
|
"engines": { "node": ">=18" },
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --
|
|
14
|
+
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
15
15
|
"prepublishOnly": "npm run build",
|
|
16
16
|
"typecheck": "tsc",
|
|
17
17
|
"test": "node --import tsx/esm --test test/*.test.ts",
|