@protolabsai/proto 0.31.1 → 0.31.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/README.md +1 -1
- package/bundled/{qc-helper → proto-helper}/SKILL.md +9 -9
- package/cli.js +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -399,7 +399,7 @@ proto ships with 22 bundled skills for agentic workflows:
|
|
|
399
399
|
- **finishing-a-development-branch** — Pre-merge cleanup
|
|
400
400
|
- **harness-reference** — Sprint contracts, verification gates, and retry logic reference
|
|
401
401
|
- **loop** — Iterative refinement loops
|
|
402
|
-
- **
|
|
402
|
+
- **proto-helper** — protoCLI usage, features, configuration, and troubleshooting
|
|
403
403
|
- **receiving-code-review** — Process review feedback
|
|
404
404
|
- **requesting-code-review** — Generate review requests
|
|
405
405
|
- **review** — Code review workflow
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
description: Answer any question about
|
|
2
|
+
name: proto-helper
|
|
3
|
+
description: Answer any question about protoCLI usage, features, configuration, and troubleshooting by referencing the official user documentation. Also helps users view or modify their settings.json. Invoke with `/proto-helper` followed by a question, e.g. `/proto-helper how do I configure MCP servers?` or `/proto-helper change approval mode to yolo`.
|
|
4
4
|
allowedTools:
|
|
5
5
|
- read_file
|
|
6
6
|
- edit_file
|
|
@@ -9,9 +9,9 @@ allowedTools:
|
|
|
9
9
|
- read_many_files
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
#
|
|
12
|
+
# protoCLI Helper
|
|
13
13
|
|
|
14
|
-
You are a helpful assistant for **
|
|
14
|
+
You are a helpful assistant for **protoCLI** — an AI coding agent for the terminal. Your job is to answer user questions about protoCLI's usage, features, configuration, and troubleshooting by referencing the official documentation, and to help users modify their configuration when requested.
|
|
15
15
|
|
|
16
16
|
## How to Find Documentation
|
|
17
17
|
|
|
@@ -100,9 +100,9 @@ When the user asks about configuration, the primary reference is `docs/configura
|
|
|
100
100
|
|
|
101
101
|
| Level | Path | Description |
|
|
102
102
|
| ------- | ------------------------------------------------------------ | -------------------------------------- |
|
|
103
|
-
| User | `~/.
|
|
104
|
-
| Project | `<project>/.
|
|
105
|
-
| System | macOS: `/Library/Application Support/
|
|
103
|
+
| User | `~/.proto/settings.json` | Personal global config |
|
|
104
|
+
| Project | `<project>/.proto/settings.json` | Project-specific, overrides user level |
|
|
105
|
+
| System | macOS: `/Library/Application Support/protoCLI/settings.json` | Admin-level config |
|
|
106
106
|
|
|
107
107
|
**Priority** (highest to lowest): CLI args > env vars > system settings > project settings > user settings > defaults
|
|
108
108
|
|
|
@@ -136,12 +136,12 @@ When the user asks about configuration, the primary reference is `docs/configura
|
|
|
136
136
|
When the user wants to modify their configuration:
|
|
137
137
|
|
|
138
138
|
1. **Read the relevant doc** to understand the config key, its type, allowed values, and defaults
|
|
139
|
-
2. **Ask which config level** to modify if not specified: user (`~/.
|
|
139
|
+
2. **Ask which config level** to modify if not specified: user (`~/.proto/settings.json`) or project (`.proto/settings.json`)
|
|
140
140
|
3. **Use `read_file`** to check the current content of the target settings file
|
|
141
141
|
4. **Use `edit_file`** to apply the change with correct JSON syntax
|
|
142
142
|
5. **After every configuration change**, you MUST remind the user:
|
|
143
143
|
|
|
144
|
-
> **Note: Most configuration changes require restarting
|
|
144
|
+
> **Note: Most configuration changes require restarting protoCLI (`/exit` then re-launch) to take effect.** Only a few settings (like `permissions`) are picked up dynamically.
|
|
145
145
|
|
|
146
146
|
### Important Notes
|
|
147
147
|
|
package/cli.js
CHANGED
|
@@ -169083,7 +169083,7 @@ __export(geminiContentGenerator_exports, {
|
|
|
169083
169083
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
169084
169084
|
});
|
|
169085
169085
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
169086
|
-
const version2 = "0.31.
|
|
169086
|
+
const version2 = "0.31.2";
|
|
169087
169087
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
169088
169088
|
const baseHeaders = {
|
|
169089
169089
|
"User-Agent": userAgent2
|
|
@@ -415019,7 +415019,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
415019
415019
|
// packages/cli/src/utils/version.ts
|
|
415020
415020
|
async function getCliVersion() {
|
|
415021
415021
|
const pkgJson = await getPackageJson();
|
|
415022
|
-
return "0.31.
|
|
415022
|
+
return "0.31.2";
|
|
415023
415023
|
}
|
|
415024
415024
|
__name(getCliVersion, "getCliVersion");
|
|
415025
415025
|
|
|
@@ -422791,7 +422791,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
422791
422791
|
|
|
422792
422792
|
// packages/cli/src/generated/git-commit.ts
|
|
422793
422793
|
init_esbuild_shims();
|
|
422794
|
-
var GIT_COMMIT_INFO = "
|
|
422794
|
+
var GIT_COMMIT_INFO = "6f0311683";
|
|
422795
422795
|
|
|
422796
422796
|
// packages/cli/src/utils/systemInfo.ts
|
|
422797
422797
|
async function getNpmVersion() {
|
|
@@ -490957,7 +490957,7 @@ var QwenAgent = class {
|
|
|
490957
490957
|
async initialize(args2) {
|
|
490958
490958
|
this.clientCapabilities = args2.clientCapabilities;
|
|
490959
490959
|
const authMethods = buildAuthMethods();
|
|
490960
|
-
const version2 = "0.31.
|
|
490960
|
+
const version2 = "0.31.2";
|
|
490961
490961
|
return {
|
|
490962
490962
|
protocolVersion: PROTOCOL_VERSION,
|
|
490963
490963
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protolabsai/proto",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.2",
|
|
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.31.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.31.2"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|