@vibeweld/cli-linux-x64-musl 0.0.3 → 0.0.5

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 ADDED
@@ -0,0 +1,88 @@
1
+ # vibeweld
2
+
3
+ VibeWeld is a CLI for managing AI coding assistant instructions from one source of truth.
4
+
5
+ Use one config and apply it across GitHub Copilot, Claude Code, Cursor, Windsurf, Cline, Gemini CLI, and many more.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ # One-off usage
11
+ npx --yes vibeweld --version
12
+
13
+ # Global install
14
+ npm install -g vibeweld
15
+ vibeweld --version
16
+ ```
17
+
18
+ ## Why VibeWeld
19
+
20
+ - Keep all agent rules in one `.vibeweld/` directory
21
+ - Roll out standards across teams and repositories
22
+ - Propagate MCP server settings consistently
23
+ - Preview changes with `--dry-run` before writing files
24
+ - Revert safely using generated-state tracking
25
+ - Upgrade from built-in channels (`stable`, `next`, `alpha`)
26
+
27
+ ## Quick Start
28
+
29
+ ```bash
30
+ # 1) Initialize project config
31
+ vibeweld init
32
+
33
+ # 2) Edit shared rules
34
+ $EDITOR .vibeweld/AGENTS.md
35
+ $EDITOR .vibeweld/vibeweld.yaml
36
+
37
+ # 3) Apply rules to detected/specified agents
38
+ vibeweld apply
39
+
40
+ # 4) See supported agents
41
+ vibeweld list
42
+ ```
43
+
44
+ ## Core Features
45
+
46
+ - 31 supported AI coding agents
47
+ - MCP configuration propagation with merge controls
48
+ - Config profiles for role-based setups (frontend/backend/etc.)
49
+ - Monorepo and nested configuration support
50
+ - Import existing agent configs and sync from remote sources
51
+ - Diff/status/check/doctor commands for maintenance workflows
52
+
53
+ ## Upgrade
54
+
55
+ ```bash
56
+ # Check update availability
57
+ vibeweld upgrade --check
58
+
59
+ # Upgrade to latest stable
60
+ vibeweld upgrade
61
+
62
+ # Select channel
63
+ vibeweld upgrade --channel stable
64
+ vibeweld upgrade --channel next
65
+ vibeweld upgrade --channel alpha
66
+
67
+ # Pin specific version
68
+ vibeweld upgrade --version 0.2.0
69
+ ```
70
+
71
+ Direct npm tags are also supported:
72
+
73
+ ```bash
74
+ npm install -g vibeweld@latest
75
+ npm install -g vibeweld@next
76
+ npm install -g vibeweld@alpha
77
+ ```
78
+
79
+ ## Documentation
80
+
81
+ - Docs: https://github.com/vibeweld/cli#readme
82
+ - CLI reference: https://github.com/vibeweld/cli/blob/main/.docs/cli.md
83
+ - Releases: https://github.com/vibeweld/cli/releases
84
+ - Issues: https://github.com/vibeweld/cli/issues
85
+
86
+ ## License
87
+
88
+ MIT
package/bin/vibeweld CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeweld/cli-linux-x64-musl",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Platform-specific binary for vibeweld (Linux x64 musl/Alpine)",
5
5
  "os": [
6
6
  "linux"
@@ -14,9 +14,9 @@
14
14
  "license": "MIT",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/vibeweld/vibeweld-cli.git"
17
+ "url": "https://github.com/vibeweld/cli.git"
18
18
  },
19
19
  "files": [
20
20
  "bin"
21
21
  ]
22
- }
22
+ }