@protolabsai/proto 0.31.1 → 0.32.0
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 +1425 -1302
- 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
|
|