@meltstudio/meltctl 4.199.0 → 4.201.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 +18 -21
- package/dist/index.js +231 -755
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# @meltstudio/meltctl
|
|
2
2
|
|
|
3
|
-
CLI
|
|
3
|
+
Companion CLI for the Melt AI-first development workflow.
|
|
4
|
+
|
|
5
|
+
The Melt dev skills (`/melt-dev-*`) are distributed centrally via the Anthropic
|
|
6
|
+
org Skills registry and auto-update in Claude Code — there's no per-repo install.
|
|
7
|
+
Run `/melt-dev-setup` in Claude Code to scaffold `AGENTS.md` + a baseline
|
|
8
|
+
`.mcp.json` in a repo. This CLI handles auth, templates, and team workflows.
|
|
4
9
|
|
|
5
10
|
## Installation
|
|
6
11
|
|
|
@@ -14,19 +19,7 @@ npm install -g @meltstudio/meltctl
|
|
|
14
19
|
# Authenticate (required)
|
|
15
20
|
meltctl login
|
|
16
21
|
|
|
17
|
-
#
|
|
18
|
-
meltctl project init
|
|
19
|
-
|
|
20
|
-
# Select specific tools
|
|
21
|
-
meltctl project init --claude # Claude Code only
|
|
22
|
-
meltctl project init --cursor # Cursor only
|
|
23
|
-
meltctl project init --opencode # OpenCode only
|
|
24
|
-
meltctl project init --claude --cursor --opencode # All tools
|
|
25
|
-
|
|
26
|
-
# Re-initialize
|
|
27
|
-
meltctl project init --force
|
|
28
|
-
|
|
29
|
-
# Fetch latest templates (used by /melt-update)
|
|
22
|
+
# Fetch latest templates to a temp dir (used by /melt-dev-update)
|
|
30
23
|
meltctl project templates
|
|
31
24
|
|
|
32
25
|
# Submit daily standup report
|
|
@@ -44,14 +37,18 @@ meltctl logout
|
|
|
44
37
|
meltctl version --check
|
|
45
38
|
```
|
|
46
39
|
|
|
47
|
-
##
|
|
40
|
+
## Scaffolding a repo
|
|
41
|
+
|
|
42
|
+
Project scaffolding lives in the dev skills, not the CLI:
|
|
43
|
+
|
|
44
|
+
- `/melt-dev-setup` — analyzes the project, writes a project-specific `AGENTS.md`,
|
|
45
|
+
and proposes a baseline `.mcp.json` (written only on your confirmation).
|
|
46
|
+
- `/melt-dev-link` — connects and verifies your ticket tracker + browser testing
|
|
47
|
+
MCP servers, and fills in the `## Tool Connections` section of `AGENTS.md`.
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
- `.cursor/commands/melt-{setup,plan,...,update}.md` — Cursor workflow commands
|
|
53
|
-
- `.opencode/commands/melt-{setup,plan,...,update}.md` — OpenCode workflow commands
|
|
54
|
-
- `.mcp.json` — MCP server configuration (Chrome DevTools)
|
|
49
|
+
`AGENTS.md` and `.mcp.json` are the only files Melt writes into a repo.
|
|
50
|
+
`.claude/settings.json` and `.gitignore` are developer-owned — Melt never touches
|
|
51
|
+
them.
|
|
55
52
|
|
|
56
53
|
## Requirements
|
|
57
54
|
|