@damper/cli 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -17,8 +17,12 @@ Claude then handles the task lifecycle via Damper MCP - logging commits, adding
17
17
  # Run directly with npx (recommended)
18
18
  npx @damper/cli
19
19
 
20
+ # Alternative: use the 'damper' command name
21
+ npx damper
22
+
20
23
  # Or install globally
21
24
  npm install -g @damper/cli
25
+ damper
22
26
  ```
23
27
 
24
28
  ### Prerequisites
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI tool for orchestrating Damper task workflows with Claude Code",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {
@@ -11,6 +11,7 @@
11
11
  "homepage": "https://usedamper.com",
12
12
  "type": "module",
13
13
  "bin": {
14
+ "damper": "./dist/index.js",
14
15
  "damper-cli": "./dist/index.js"
15
16
  },
16
17
  "main": "./dist/index.js",