@karedo-hq/agents 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +17 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,6 +38,20 @@ agents install --target cursor
38
38
  agents install --target cursor --force
39
39
  ```
40
40
 
41
+ ## Updating
42
+
43
+ When rules or commands are updated, developers can get the latest version:
44
+
45
+ ```bash
46
+ # Get latest from npm
47
+ pnpm dlx @karedo-hq/agents@latest install --target cursor --force
48
+
49
+ # Or directly from GitHub (always pulls latest main)
50
+ pnpm dlx github:karedo-hq/agents install --target cursor --force
51
+ ```
52
+
53
+ The `--force` flag overwrites existing files with the new versions.
54
+
41
55
  ## Supported Targets
42
56
 
43
57
  | Target | Description | Output Directory |
@@ -89,7 +103,9 @@ pnpm typecheck
89
103
 
90
104
  1. Add your rule file to `rules/` (use `.mdc` extension for Cursor compatibility)
91
105
  2. Add your command file to `commands/` (use `.md` extension)
92
- 3. Rebuild and publish
106
+ 3. Bump version in `package.json`
107
+ 4. Commit and push to GitHub
108
+ 5. Publish: `pnpm publish --access public`
93
109
 
94
110
  ## Adding New IDE Targets
95
111
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karedo-hq/agents",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Centralized agent skills, rules, and commands for our engineering team",
5
5
  "type": "module",
6
6
  "bin": {