@agentrules/cli 0.0.14 → 0.1.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 +3 -6
- package/dist/index.js +1060 -808
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ agentrules add agentic-dev-starter --platform opencode --global
|
|
|
52
52
|
agentrules add agentic-dev-starter --platform opencode --version 1.0
|
|
53
53
|
|
|
54
54
|
# Version can also be specified with @ syntax
|
|
55
|
-
agentrules add agentic-dev-starter
|
|
55
|
+
agentrules add agentic-dev-starter@1.0 --platform opencode
|
|
56
56
|
|
|
57
57
|
# Preview what would be installed
|
|
58
58
|
agentrules add agentic-dev-starter --platform opencode --dry-run
|
|
@@ -120,7 +120,7 @@ After running `init`, your preset structure is:
|
|
|
120
120
|
| `license` | Yes | SPDX license identifier (e.g., `MIT`) |
|
|
121
121
|
| `platform` | Yes | Target platform: `opencode`, `claude`, `cursor`, `codex` |
|
|
122
122
|
| `version` | No | Major version (default: 1) |
|
|
123
|
-
| `tags` |
|
|
123
|
+
| `tags` | Yes | 1-10 tags for discoverability |
|
|
124
124
|
| `features` | No | Up to 5 key features to highlight |
|
|
125
125
|
| `ignore` | No | Additional patterns to exclude from bundle |
|
|
126
126
|
|
|
@@ -219,13 +219,10 @@ agentrules unpublish <preset> [options]
|
|
|
219
219
|
**Examples:**
|
|
220
220
|
|
|
221
221
|
```bash
|
|
222
|
-
# Full format: slug.platform@version
|
|
223
|
-
agentrules unpublish my-preset.opencode@1.0
|
|
224
|
-
|
|
225
222
|
# With flags
|
|
226
223
|
agentrules unpublish my-preset --platform opencode --version 1.0
|
|
227
224
|
|
|
228
|
-
#
|
|
225
|
+
# Version can be specified with @ syntax
|
|
229
226
|
agentrules unpublish my-preset@1.0 --platform opencode
|
|
230
227
|
```
|
|
231
228
|
|