@forwardimpact/libeval 0.1.25 → 0.1.26

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/bin/fit-eval.js CHANGED
@@ -178,25 +178,25 @@ const definition = {
178
178
  documentation: [
179
179
  {
180
180
  title: "Agent Evaluations",
181
- url: "https://www.forwardimpact.team/docs/guides/agent-evaluations/index.md",
181
+ url: "https://www.forwardimpact.team/docs/libraries/agent-evaluations/index.md",
182
182
  description:
183
183
  "Author a judge profile, run an eval locally, wire it into CI, and inspect the resulting trace.",
184
184
  },
185
185
  {
186
186
  title: "Agent Collaboration",
187
- url: "https://www.forwardimpact.team/docs/guides/agent-collaboration/index.md",
187
+ url: "https://www.forwardimpact.team/docs/libraries/agent-collaboration/index.md",
188
188
  description:
189
189
  "Author a facilitator and participant profiles, run a multi-agent session, and read the message flow.",
190
190
  },
191
191
  {
192
192
  title: "Trace Analysis",
193
- url: "https://www.forwardimpact.team/docs/guides/trace-analysis/index.md",
193
+ url: "https://www.forwardimpact.team/docs/libraries/trace-analysis/index.md",
194
194
  description:
195
195
  "Read the NDJSON traces produced by `fit-eval` with `fit-trace` — grounded-theory method and worked examples.",
196
196
  },
197
197
  {
198
198
  title: "Agent Teams",
199
- url: "https://www.forwardimpact.team/docs/guides/agent-teams/index.md",
199
+ url: "https://www.forwardimpact.team/docs/products/agent-teams/index.md",
200
200
  description:
201
201
  "How to author the agent, supervisor, and facilitator profiles consumed by --agent-profile, --supervisor-profile, --facilitator-profile, and --agent-profiles.",
202
202
  },
package/bin/fit-trace.js CHANGED
@@ -215,19 +215,19 @@ const definition = {
215
215
  documentation: [
216
216
  {
217
217
  title: "Trace Analysis",
218
- url: "https://www.forwardimpact.team/docs/guides/trace-analysis/index.md",
218
+ url: "https://www.forwardimpact.team/docs/libraries/trace-analysis/index.md",
219
219
  description:
220
220
  "The full method walkthrough with worked examples (an eval that failed, a multi-agent session that stalled).",
221
221
  },
222
222
  {
223
223
  title: "Agent Evaluations",
224
- url: "https://www.forwardimpact.team/docs/guides/agent-evaluations/index.md",
224
+ url: "https://www.forwardimpact.team/docs/libraries/agent-evaluations/index.md",
225
225
  description:
226
226
  "How `fit-eval supervise` produces the traces this skill analyzes.",
227
227
  },
228
228
  {
229
229
  title: "Agent Collaboration",
230
- url: "https://www.forwardimpact.team/docs/guides/agent-collaboration/index.md",
230
+ url: "https://www.forwardimpact.team/docs/libraries/agent-collaboration/index.md",
231
231
  description:
232
232
  "How `fit-eval facilitate` produces multi-agent traces; `split` is the bridge into per-source files.",
233
233
  },
package/package.json CHANGED
@@ -1,7 +1,22 @@
1
1
  {
2
2
  "name": "@forwardimpact/libeval",
3
- "version": "0.1.25",
4
- "description": "Process Claude Code stream-json output into structured traces",
3
+ "version": "0.1.26",
4
+ "description": "Agent evaluation: collect Claude Code traces, run agent loops, supervise multi-step workflows.",
5
+ "keywords": [
6
+ "eval",
7
+ "agent",
8
+ "trace",
9
+ "claude-code",
10
+ "supervisor"
11
+ ],
12
+ "forwardimpact": {
13
+ "capability": "agent-self-improvement",
14
+ "needs": [
15
+ "Parse and query Claude Code trace NDJSON files",
16
+ "Drive an LLM agent through a scripted run and capture its trace",
17
+ "Supervise a multi-step or multi-agent workflow"
18
+ ]
19
+ },
5
20
  "license": "Apache-2.0",
6
21
  "author": "D. Olsson <hi@senzilla.io>",
7
22
  "type": "module",