fapony 0.1.0 → 0.1.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 +1 -1
- package/fapony.ts +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,7 +86,7 @@ Stated up front, because the gap between these two things is where most tooling
|
|
|
86
86
|
## Quick start (MCP)
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
# 1. Install (Bun
|
|
89
|
+
# 1. Install (needs Bun — https://bun.sh)
|
|
90
90
|
git clone https://github.com/kire21b/fapony.git && cd fapony
|
|
91
91
|
bun install
|
|
92
92
|
bun link # puts `fapony` on your PATH; or run via `bun fapony.ts`
|
package/fapony.ts
CHANGED
|
@@ -19,7 +19,6 @@ import { cmdReviewSeed } from "./src/review-seed.js";
|
|
|
19
19
|
import { cmdSetup } from "./src/setup.js";
|
|
20
20
|
import { cmdStats } from "./src/stats/index.js";
|
|
21
21
|
import { cmdTelemetry } from "./src/telemetry.js";
|
|
22
|
-
import { cmdTest } from "./src/test.js";
|
|
23
22
|
import { cmdUpdate } from "./src/update.js";
|
|
24
23
|
import { cmdUsageScan, cmdUsageWeb } from "./src/usage/index.js";
|
|
25
24
|
|
|
@@ -68,6 +67,10 @@ if (cmd === "analyze") {
|
|
|
68
67
|
} else if (cmd === "usage-web") {
|
|
69
68
|
cmdUsageWeb(a);
|
|
70
69
|
} else if (cmd === "test") {
|
|
70
|
+
// dynamic: src/test.js re-exports test/index.js, which the npm package
|
|
71
|
+
// doesn't ship (repo self-check only, not a published command) — a static
|
|
72
|
+
// import here would fail module load for every command, not just this one
|
|
73
|
+
const { cmdTest } = await import("./src/test.js");
|
|
71
74
|
await cmdTest();
|
|
72
75
|
} else {
|
|
73
76
|
console.error(`fapony: unknown command "${cmd ?? ""}"`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fapony",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Measurement layer for coding agents — measure what agents do, verify what they claim. 6 MCP tools, any agent, no loop required",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "delamind (https://github.com/kire21b)",
|