@agentver/cli 0.2.1 → 0.2.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/LICENSE +1 -1
- package/README.md +57 -15
- package/dist/agentver.js +319 -94
- package/dist/agentver.js.map +1 -1
- package/package.json +4 -3
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
# agentver
|
|
1
|
+
# @agentver/cli
|
|
2
2
|
|
|
3
|
-
Agent skill registry — store, version, and distribute AI agent skills.
|
|
3
|
+
Agent skill registry — store, version, and distribute AI agent skills across 43+ coding assistants.
|
|
4
4
|
|
|
5
|
-
Agentver is a CLI for managing reusable skills, prompts, and configurations across AI coding agents like Claude Code, Cursor, Windsurf, Copilot, and more. Install skills from Git repositories, keep them in sync, and share improvements back.
|
|
5
|
+
Agentver is a CLI for managing reusable skills, prompts, and configurations across AI coding agents like Claude Code, Cursor, Windsurf, Copilot, and more. Install skills from Git repositories or community marketplaces, keep them in sync, and share improvements back.
|
|
6
|
+
|
|
7
|
+
**Platform:** [app.agentver.com](https://app.agentver.com) | **Source:** [github.com/agentver/agentver](https://github.com/agentver/agentver)
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
|
@@ -31,6 +33,9 @@ agentver install github.com/owner/repo
|
|
|
31
33
|
# Install from a subdirectory
|
|
32
34
|
agentver install github.com/owner/repo/path/to/skill
|
|
33
35
|
|
|
36
|
+
# Search for skills
|
|
37
|
+
agentver search "code review"
|
|
38
|
+
|
|
34
39
|
# Scan your project for existing agent configs
|
|
35
40
|
agentver scan
|
|
36
41
|
|
|
@@ -39,36 +44,73 @@ agentver adopt
|
|
|
39
44
|
|
|
40
45
|
# Check the status of installed skills
|
|
41
46
|
agentver status
|
|
47
|
+
|
|
48
|
+
# Connect to the Agentver platform
|
|
49
|
+
agentver login
|
|
42
50
|
```
|
|
43
51
|
|
|
44
52
|
## Commands
|
|
45
53
|
|
|
54
|
+
### Core
|
|
55
|
+
|
|
46
56
|
| Command | Description |
|
|
47
57
|
| --- | --- |
|
|
48
|
-
| `install <source>` | Install a skill from a Git repository
|
|
49
|
-
| `remove <name>` | Remove an installed package |
|
|
58
|
+
| `install <source>` | Install a skill from a Git repository, well-known domain, or registry |
|
|
59
|
+
| `remove <name>` | Remove an installed package (alias: `uninstall`) |
|
|
50
60
|
| `update` | Update installed skills to their latest upstream version |
|
|
51
61
|
| `list` | Show installed packages |
|
|
52
62
|
| `status` | Show status of installed skills (upstream changes, local modifications) |
|
|
53
|
-
| `diff <name>` | Show diff between local and upstream version of a skill |
|
|
54
63
|
| `sync` | Push local installation state to platform |
|
|
55
|
-
|
|
64
|
+
|
|
65
|
+
### Discovery
|
|
66
|
+
|
|
67
|
+
| Command | Description |
|
|
68
|
+
| --- | --- |
|
|
69
|
+
| `search <query>` | Search for skills across registries (platform, skills.sh, well-known) |
|
|
70
|
+
| `info <package>` | Show detailed information about a package |
|
|
56
71
|
| `scan` | Scan directory for agent configs and skills |
|
|
57
72
|
| `adopt` | Adopt existing skills and configs into agentver management |
|
|
58
|
-
|
|
73
|
+
|
|
74
|
+
### Authoring
|
|
75
|
+
|
|
76
|
+
| Command | Description |
|
|
77
|
+
| --- | --- |
|
|
78
|
+
| `init` | Scaffold a new package (skill, agent config, plugin, script, or prompt) |
|
|
59
79
|
| `save` | Commit local skill changes to the platform |
|
|
60
80
|
| `publish` | Publish a skill to the registry |
|
|
61
|
-
| `audit` | Run a security scan on installed skills or an arbitrary directory |
|
|
62
|
-
| `verify <name>` | Verify a skill — checks publisher, integrity, and security |
|
|
63
81
|
| `suggest <title>` | Create a suggestion from local modifications |
|
|
64
82
|
| `suggestions` | List suggestions for a skill |
|
|
65
83
|
| `draft` | Manage skill drafts (branches) |
|
|
66
84
|
| `version` | Manage skill versions (tags) |
|
|
85
|
+
| `diff <name>` | Show diff between local and upstream version of a skill |
|
|
67
86
|
| `log <name>` | Show commit history for a skill |
|
|
68
|
-
|
|
69
|
-
|
|
87
|
+
|
|
88
|
+
### Security
|
|
89
|
+
|
|
90
|
+
| Command | Description |
|
|
91
|
+
| --- | --- |
|
|
92
|
+
| `audit` | Run a security scan on installed skills or an arbitrary directory |
|
|
93
|
+
| `verify <name>` | Verify a skill — checks publisher, integrity, and security |
|
|
94
|
+
|
|
95
|
+
### Account
|
|
96
|
+
|
|
97
|
+
| Command | Description |
|
|
98
|
+
| --- | --- |
|
|
99
|
+
| `login` | Authenticate with the Agentver platform |
|
|
100
|
+
| `logout` | Log out from the Agentver platform |
|
|
70
101
|
| `whoami` | Show authentication state |
|
|
71
102
|
|
|
103
|
+
### Configuration
|
|
104
|
+
|
|
105
|
+
| Command | Description |
|
|
106
|
+
| --- | --- |
|
|
107
|
+
| `config` | Get, set, list, or reset CLI configuration |
|
|
108
|
+
| `pin <name>` | Pin a package to prevent automatic updates |
|
|
109
|
+
| `unpin <name>` | Unpin a package to allow updates |
|
|
110
|
+
| `doctor` | Diagnose environment issues (checks dependencies, connectivity, config) |
|
|
111
|
+
| `upgrade` | Self-update the CLI to the latest version |
|
|
112
|
+
| `completion` | Generate shell completions (bash, zsh, fish) |
|
|
113
|
+
|
|
72
114
|
Use `agentver <command> --help` for detailed usage of any command.
|
|
73
115
|
|
|
74
116
|
## Global options
|
|
@@ -87,11 +129,11 @@ Agentver automatically detects which AI coding agents are present in your projec
|
|
|
87
129
|
- Cursor (`.cursor/rules/`)
|
|
88
130
|
- Windsurf (`.windsurfrules/`)
|
|
89
131
|
- GitHub Copilot (`.github/copilot/`)
|
|
90
|
-
- Codex (`.codex/`)
|
|
132
|
+
- OpenAI Codex (`.codex/`)
|
|
91
133
|
- Aider (`.aider/`)
|
|
92
134
|
- Cline (`.cline/rules/`)
|
|
93
135
|
- Roo Code (`.roo/rules/`)
|
|
94
|
-
-
|
|
136
|
+
- Zencoder, Tabnine, Sourcegraph Cody, and [40+ more](https://github.com/agentver/agentver/blob/main/packages/agent-definitions/src/agents/definitions.ts)
|
|
95
137
|
|
|
96
138
|
## Security
|
|
97
139
|
|
|
@@ -120,4 +162,4 @@ Repositories can advertise their skills via a `/.well-known/skills/index.json` e
|
|
|
120
162
|
|
|
121
163
|
## Licence
|
|
122
164
|
|
|
123
|
-
MIT
|
|
165
|
+
MIT — see [LICENSE](./LICENSE)
|