@protolabsai/proto 0.25.7 → 0.25.9
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 +24 -6
- package/cli.js +5 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -159,6 +159,14 @@ Tools are exposed as `mcp__<server_name>__<tool_name>` and available to the agen
|
|
|
159
159
|
|
|
160
160
|
proto auto-discovers Claude Code plugins installed at `~/.claude/plugins/`. Any plugin's `commands/` directory is automatically loaded as slash commands — no additional config needed.
|
|
161
161
|
|
|
162
|
+
### Environment variable overrides
|
|
163
|
+
|
|
164
|
+
| Variable | Default | Description |
|
|
165
|
+
| ------------------------------- | ------- | ----------------------------------------------------------------------------------------------- |
|
|
166
|
+
| `PROTO_STREAM_STALL_TIMEOUT_MS` | `90000` | Max ms to wait between streaming chunks before declaring the connection stalled (then retrying) |
|
|
167
|
+
| `PROTO_SYSTEM_DEFAULTS_PATH` | — | Override path to the system defaults settings file |
|
|
168
|
+
| `PROTO_SYSTEM_SETTINGS_PATH` | — | Override path to the system settings override file |
|
|
169
|
+
|
|
162
170
|
## Observability
|
|
163
171
|
|
|
164
172
|
proto supports [Langfuse](https://langfuse.com) tracing out of the box. Set three environment variables and every session is fully traced — LLM calls (all providers), tool executions, subagent lifecycles, and turn hierarchy.
|
|
@@ -331,15 +339,20 @@ Results are cached at `.proto/repo-map-cache.json` and auto-invalidate on file c
|
|
|
331
339
|
|
|
332
340
|
proto ships with 22 bundled skills for agentic workflows:
|
|
333
341
|
|
|
334
|
-
- **
|
|
342
|
+
- **adversarial-verification** — Adversarial review and stress-testing of agent output
|
|
335
343
|
- **brainstorming** — Structured ideation
|
|
344
|
+
- **browser-automation** — Web browser automation
|
|
345
|
+
- **coding-agent-standards** — Enforced coding conventions for agent-written code
|
|
336
346
|
- **dispatching-parallel-agents** — Fan-out/fan-in subagent patterns
|
|
337
347
|
- **executing-plans** — Step-by-step plan execution
|
|
338
348
|
- **finishing-a-development-branch** — Pre-merge cleanup
|
|
349
|
+
- **harness-reference** — Sprint contracts, verification gates, and retry logic reference
|
|
350
|
+
- **loop** — Iterative refinement loops
|
|
339
351
|
- **qc-helper** — Quality control checks
|
|
340
352
|
- **receiving-code-review** — Process review feedback
|
|
341
353
|
- **requesting-code-review** — Generate review requests
|
|
342
354
|
- **review** — Code review workflow
|
|
355
|
+
- **sprint-contract** — Scope lock and contract negotiation
|
|
343
356
|
- **subagent-driven-development** — Delegate to specialized subagents
|
|
344
357
|
- **systematic-debugging** — Structured debug methodology
|
|
345
358
|
- **test-driven-development** — TDD workflow
|
|
@@ -457,11 +470,16 @@ Any user-defined sub-agent from `.proto/agents/` can also be used as a member ty
|
|
|
457
470
|
|
|
458
471
|
## Keyboard Shortcuts
|
|
459
472
|
|
|
460
|
-
| Shortcut
|
|
461
|
-
|
|
|
462
|
-
| `Ctrl+C`
|
|
463
|
-
| `Ctrl+D`
|
|
464
|
-
| `
|
|
473
|
+
| Shortcut | Action |
|
|
474
|
+
| ----------- | --------------------------------------------------------------- |
|
|
475
|
+
| `Ctrl+C` | Cancel ongoing request. Press twice to exit. |
|
|
476
|
+
| `Ctrl+D` | Exit if input is empty. |
|
|
477
|
+
| `Ctrl+L` | Clear the screen |
|
|
478
|
+
| `Ctrl+Y` | Retry the last failed request |
|
|
479
|
+
| `Shift+Tab` | Cycle approval modes: `plan` → `default` → `auto-edit` → `yolo` |
|
|
480
|
+
| `Up/Down` | Navigate command history |
|
|
481
|
+
|
|
482
|
+
See [Keyboard Shortcuts reference](docs/reference/keyboard-shortcuts.md) for the full list.
|
|
465
483
|
|
|
466
484
|
## Voice Integration
|
|
467
485
|
|
package/cli.js
CHANGED
|
@@ -170887,7 +170887,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
170887
170887
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
170888
170888
|
});
|
|
170889
170889
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
170890
|
-
const version2 = "0.25.
|
|
170890
|
+
const version2 = "0.25.9";
|
|
170891
170891
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
170892
170892
|
const baseHeaders = {
|
|
170893
170893
|
"User-Agent": userAgent2
|
|
@@ -173467,7 +173467,7 @@ var init_turn = __esm({
|
|
|
173467
173467
|
init_errors();
|
|
173468
173468
|
init_thoughtUtils();
|
|
173469
173469
|
init_streamStall();
|
|
173470
|
-
STREAM_STALL_TIMEOUT_MS = parseInt(process.env["PROTO_STREAM_STALL_TIMEOUT_MS"] ?? "
|
|
173470
|
+
STREAM_STALL_TIMEOUT_MS = parseInt(process.env["PROTO_STREAM_STALL_TIMEOUT_MS"] ?? "90000", 10);
|
|
173471
173471
|
(function(GeminiEventType2) {
|
|
173472
173472
|
GeminiEventType2["Content"] = "content";
|
|
173473
173473
|
GeminiEventType2["ToolCallRequest"] = "tool_call_request";
|
|
@@ -414864,7 +414864,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
414864
414864
|
// packages/cli/src/utils/version.ts
|
|
414865
414865
|
async function getCliVersion() {
|
|
414866
414866
|
const pkgJson = await getPackageJson();
|
|
414867
|
-
return "0.25.
|
|
414867
|
+
return "0.25.9";
|
|
414868
414868
|
}
|
|
414869
414869
|
__name(getCliVersion, "getCliVersion");
|
|
414870
414870
|
|
|
@@ -422636,7 +422636,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
422636
422636
|
|
|
422637
422637
|
// packages/cli/src/generated/git-commit.ts
|
|
422638
422638
|
init_esbuild_shims();
|
|
422639
|
-
var GIT_COMMIT_INFO = "
|
|
422639
|
+
var GIT_COMMIT_INFO = "e09b08c40";
|
|
422640
422640
|
|
|
422641
422641
|
// packages/cli/src/utils/systemInfo.ts
|
|
422642
422642
|
async function getNpmVersion() {
|
|
@@ -490068,7 +490068,7 @@ var QwenAgent = class {
|
|
|
490068
490068
|
async initialize(args2) {
|
|
490069
490069
|
this.clientCapabilities = args2.clientCapabilities;
|
|
490070
490070
|
const authMethods = buildAuthMethods();
|
|
490071
|
-
const version2 = "0.25.
|
|
490071
|
+
const version2 = "0.25.9";
|
|
490072
490072
|
return {
|
|
490073
490073
|
protocolVersion: PROTOCOL_VERSION,
|
|
490074
490074
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protolabsai/proto",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.9",
|
|
4
4
|
"description": "proto - AI-powered coding agent",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bundled"
|
|
22
22
|
],
|
|
23
23
|
"config": {
|
|
24
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.25.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.25.9"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|