@quantod/qq 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/mcp.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantod/qq",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Persistent queue for multi-stage Claude agent pipelines",
5
5
  "license": "UNLICENSED",
6
6
  "engines": {
package/src/mcp.ts CHANGED
@@ -120,7 +120,7 @@ export async function startMcp(fixedPort?: number): Promise<void> {
120
120
  description: 'Get pipeline description and item counts per stage. Read guide before using.',
121
121
  inputSchema: { pipeline: z.string() },
122
122
  }, ({ pipeline }) => {
123
- try { return ok(dump(status(pipeline), { lineWidth: -1 })); }
123
+ try { return ok(dump(status(pipeline), { lineWidth: -1, flowLevel: 2 })); }
124
124
  catch (e) { return err(e); }
125
125
  });
126
126