barebrowse 0.3.2 → 0.3.3
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/CHANGELOG.md +6 -3
- package/README.md +5 -9
- package/docs/skill-template.md +8 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.3
|
|
4
|
+
|
|
5
|
+
- Simplified skill install paths: Claude Code (`.claude/` project, `~/.claude/` global), other agents (`.barebrowse/commands/` project, `~/.config/barebrowse/commands/` global)
|
|
6
|
+
|
|
3
7
|
## 0.3.2
|
|
4
8
|
|
|
5
|
-
- Skill install
|
|
6
|
-
-
|
|
7
|
-
- New: `docs/skill-template.md` — generic template for any CLI tool to create a skill file, with frontmatter reference, install locations, and skill-vs-MCP comparison
|
|
9
|
+
- Skill install instructions in README, clarified `npm install` still required — skill is documentation only
|
|
10
|
+
- New: `docs/skill-template.md` — generic template for any CLI tool to create a skill file
|
|
8
11
|
|
|
9
12
|
## 0.3.1
|
|
10
13
|
|
package/README.md
CHANGED
|
@@ -45,15 +45,11 @@ Outputs go to `.barebrowse/` as files -- agents read them with their file tools,
|
|
|
45
45
|
|
|
46
46
|
**Teach your agent the commands** by installing the skill file (a markdown reference the agent reads as context). The CLI tool itself still needs `npm install barebrowse` -- the skill just teaches the agent how to use it.
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
| **Copilot** | Append to `.github/copilot-instructions.md` | N/A |
|
|
54
|
-
| **Any agent** | Copy `SKILL.md` to project root or context dir | Varies |
|
|
55
|
-
|
|
56
|
-
Source file: [.claude/skills/barebrowse/SKILL.md](.claude/skills/barebrowse/SKILL.md). For writing your own skill files: [docs/skill-template.md](docs/skill-template.md).
|
|
48
|
+
**Claude Code:** `.claude/skills/barebrowse/` (project) or `~/.claude/skills/barebrowse/` (global, via `barebrowse install --skill`).
|
|
49
|
+
|
|
50
|
+
**Other agents:** `.barebrowse/commands/` (project) or `~/.config/barebrowse/commands/` (global). Copy [SKILL.md](.claude/skills/barebrowse/SKILL.md) there.
|
|
51
|
+
|
|
52
|
+
For writing your own skill files for other CLI tools: [docs/skill-template.md](docs/skill-template.md).
|
|
57
53
|
|
|
58
54
|
### 2. MCP server -- for Claude Desktop, Cursor, and other MCP clients
|
|
59
55
|
|
package/docs/skill-template.md
CHANGED
|
@@ -63,23 +63,11 @@ Show a real example so the agent knows what to expect.
|
|
|
63
63
|
|
|
64
64
|
The skill file is just a `.md` file placed where the agent can find it:
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
**Claude Code:** `.claude/skills/your-tool/` (project) or `~/.claude/skills/your-tool/` (global).
|
|
67
67
|
|
|
68
|
-
|
|
69
|
-
|-------|----------|-----|
|
|
70
|
-
| **This project only** | `.claude/skills/your-tool/SKILL.md` | Copy file into project |
|
|
71
|
-
| **All projects (global)** | `~/.config/claude/skills/your-tool/SKILL.md` | Copy file to home config |
|
|
68
|
+
**Other agents:** `.your-tool/commands/` (project) or `~/.config/your-tool/commands/` (global).
|
|
72
69
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
| Agent | Project scope | Global scope |
|
|
76
|
-
|-------|---------------|--------------|
|
|
77
|
-
| **Cursor** | `.cursor/rules/your-tool.md` | `~/.cursor/rules/your-tool.md` |
|
|
78
|
-
| **Windsurf** | `.windsurf/rules/your-tool.md` | `~/.windsurf/rules/your-tool.md` |
|
|
79
|
-
| **GitHub Copilot** | `.github/copilot-instructions.md` (append) | N/A |
|
|
80
|
-
| **Generic** | Drop in project root as `your-tool.context.md` | Varies by agent |
|
|
81
|
-
|
|
82
|
-
> **Note:** Non-Claude agents ignore the YAML frontmatter — they just read it as markdown context. The `allowed-tools` field is Claude Code specific.
|
|
70
|
+
Non-Claude agents ignore the YAML frontmatter — they just read it as markdown context. The `allowed-tools` field is Claude Code specific.
|
|
83
71
|
|
|
84
72
|
## What the skill does NOT do
|
|
85
73
|
|
|
@@ -104,16 +92,15 @@ Both require the underlying tool to be installed. Choose based on your agent's c
|
|
|
104
92
|
|
|
105
93
|
## Example: barebrowse
|
|
106
94
|
|
|
107
|
-
barebrowse ships its skill at `.claude/skills/barebrowse/SKILL.md
|
|
95
|
+
barebrowse ships its skill at `.claude/skills/barebrowse/SKILL.md`:
|
|
108
96
|
|
|
109
97
|
```bash
|
|
110
|
-
#
|
|
98
|
+
# Claude Code — project
|
|
111
99
|
cp node_modules/barebrowse/.claude/skills/barebrowse/SKILL.md .claude/skills/barebrowse/SKILL.md
|
|
112
100
|
|
|
113
|
-
#
|
|
101
|
+
# Claude Code — global
|
|
114
102
|
barebrowse install --skill
|
|
115
|
-
# copies to ~/.config/claude/skills/barebrowse/SKILL.md
|
|
116
103
|
|
|
117
|
-
#
|
|
118
|
-
cp node_modules/barebrowse/.claude/skills/barebrowse/SKILL.md .
|
|
104
|
+
# Other agents — project or global
|
|
105
|
+
cp node_modules/barebrowse/.claude/skills/barebrowse/SKILL.md .barebrowse/commands/SKILL.md
|
|
119
106
|
```
|