Skip to content

Commit 3bdfce8

Browse files
committed
chore: avoid overriding the default skills
1 parent 9127095 commit 3bdfce8

4 files changed

Lines changed: 16 additions & 14 deletions

File tree

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,33 +83,35 @@ The log file is also directly at `~/.weave_claude_plugin/logs/daemon.log`.
8383

8484
Once the plugin is installed, three skills are available directly inside any Claude Code session:
8585

86-
### `/weave:install`
86+
To avoid collisions with Claude Code's built-in skills, the config and status skills use unique hyphenated names. Their user-facing commands are `/weave:weave-config` and `/weave:weave-status`.
87+
88+
### `/weave:weave-install`
8789

8890
Walks through the full installation and configuration flow interactively. Use this on a fresh machine or to diagnose a broken setup. Claude will check for the CLI, run the installer, prompt for missing config values, and verify everything is working.
8991

9092
```
91-
/weave:install
93+
/weave:weave-install
9294
```
9395

94-
### `/weave:status`
96+
### `/weave:weave-status`
9597

9698
Checks the current plugin status and explains any issues. Equivalent to running `weave-claude-plugin status` but Claude interprets the output and tells you exactly what to fix.
9799

98100
```
99-
/weave:status
101+
/weave:weave-status
100102
```
101103

102-
### `/weave:config`
104+
### `/weave:weave-config`
103105

104106
Read or update plugin configuration without leaving Claude Code.
105107

106108
```
107109
# Show current config
108-
/weave:config
110+
/weave:weave-config
109111
110112
# Set a value directly
111-
/weave:config set weave_project my-entity/my-project
112-
/weave:config set wandb_api_key <your-api-key>
113+
/weave:weave-config set weave_project my-entity/my-project
114+
/weave:weave-config set wandb_api_key <your-api-key>
113115
```
114116

115117
---
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: config
2+
name: weave-config
33
description: This skill should be used when the user wants to "configure weave", "set weave project", "change weave project", "set wandb api key", "update weave settings", "show weave config", "change weave configuration", or needs to read or update any Weave Claude Code plugin settings.
44
---
55

@@ -9,7 +9,7 @@ Read and update configuration for the Weave Claude Code plugin.
99

1010
## Determine Intent
1111

12-
If the user invoked this skill with arguments (e.g., `/weave:config set weave_project entity/project`), execute the corresponding command directly. Otherwise, show the current configuration first and then ask what they want to change.
12+
If the user invoked this skill with arguments (e.g., `/weave:weave-config set weave_project entity/project`), execute the corresponding command directly. Otherwise, show the current configuration first and then ask what they want to change.
1313

1414
## Show Current Config
1515

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: install
2+
name: weave-install
33
description: This skill should be used when the user wants to "install the weave plugin", "set up weave", "install weave-claude-plugin", "configure weave for the first time", "get started with weave tracing", or needs to complete the initial setup of the Weave Claude Code plugin including dependency installation and project configuration.
44
---
55

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: status
2+
name: weave-status
33
description: This skill should be used when the user wants to "check weave status", "verify the weave plugin is running", "see if weave is set up correctly", "check weave configuration", "is weave working", or needs to diagnose why Claude Code sessions are not appearing in Weave.
44
---
55

@@ -25,9 +25,9 @@ Each status line indicates one of three states:
2525

2626
| Symptom | Fix |
2727
|---------|-----|
28-
| `✗ Configuration: not found` | Run `/weave:install` to complete installation |
28+
| `✗ Configuration: not found` | Run `/weave:weave-install` to complete installation |
2929
| `✗ CLI: not found in PATH` | Run `npm install -g weave-claude-plugin` in a terminal |
30-
| `✗ Weave project: not configured` | Run `/weave:config set weave_project ENTITY/PROJECT` |
30+
| `✗ Weave project: not configured` | Run `/weave:weave-config set weave_project ENTITY/PROJECT` |
3131
| `- Daemon socket: not running` | Normal if no Claude Code session is active; daemon starts automatically on next hook event |
3232
| `- Log file: not created yet` | Normal before first session; no action needed |
3333

0 commit comments

Comments
 (0)