overskill 1.0.1 → 1.0.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 +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Overskill
|
|
2
2
|
|
|
3
|
+
[Overskill](https://overskill.jacobchaselubitz.com/)
|
|
4
|
+
|
|
3
5
|
Overskill is a skills manager for AI coding agents. It gives you a single place to write, version, and share the instruction files that guide tools like Claude Code, Cursor, Codex, and Windsurf — then apply them to any repository with one command.
|
|
4
6
|
|
|
5
7
|
**Why Overskill?**
|
|
@@ -29,6 +31,10 @@ Overskill maintains a **global registry** on your machine (in `~/.overskill/regi
|
|
|
29
31
|
# Install
|
|
30
32
|
npm install -g overskill
|
|
31
33
|
|
|
34
|
+
# Or install with Homebrew
|
|
35
|
+
brew tap jchaselubitz/tap
|
|
36
|
+
brew install overskill
|
|
37
|
+
|
|
32
38
|
# Initialize in a project
|
|
33
39
|
cd your-project
|
|
34
40
|
skill init
|
|
@@ -39,8 +45,8 @@ skill import
|
|
|
39
45
|
# Or create a new skill from scratch
|
|
40
46
|
skill new my-skill
|
|
41
47
|
|
|
42
|
-
#
|
|
43
|
-
skill
|
|
48
|
+
# Add skills to the project
|
|
49
|
+
skill add my-skill
|
|
44
50
|
```
|
|
45
51
|
|
|
46
52
|
## License
|