@meltstudio/meltctl 4.9.1 → 4.11.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 CHANGED
@@ -43,7 +43,7 @@ meltctl version --check
43
43
 
44
44
  ## Requirements
45
45
 
46
- - Node.js 22+
46
+ - Node.js 20+
47
47
  - `@meltstudio.co` Google Workspace account
48
48
 
49
49
  ## License
@@ -7,43 +7,72 @@ import { fetchTemplates } from '../utils/templates.js';
7
7
  const SKILL_FRONTMATTER = {
8
8
  setup: `---
9
9
  user-invocable: true
10
- description: Analyze the project and customize AGENTS.md for this codebase
10
+ description: >-
11
+ Analyze the project and customize AGENTS.md for this codebase.
12
+ Use when setting up a new project, after running meltctl init,
13
+ or when AGENTS.md has placeholder markers. Detects tech stack,
14
+ fills in project-specific sections, and merges existing standards.
11
15
  ---
12
16
 
13
17
  `,
14
18
  plan: `---
15
19
  user-invocable: true
16
- description: Design an implementation approach before writing code
20
+ description: >-
21
+ Design an implementation approach before writing code. Use when
22
+ starting a feature, tackling a complex task, or when the developer
23
+ says "plan this" or "how should we approach this". Gathers requirements,
24
+ explores codebase, and presents a step-by-step plan for approval.
17
25
  ---
18
26
 
19
27
  `,
20
28
  review: `---
21
29
  user-invocable: true
22
- description: Review changes against project standards
30
+ description: >-
31
+ Review code changes against project standards and address PR feedback.
32
+ Use when the developer asks to review changes, check code quality,
33
+ or respond to PR reviewer comments. Categorizes findings as must-fix,
34
+ should-fix, or suggestions.
23
35
  ---
24
36
 
25
37
  `,
26
38
  pr: `---
27
39
  user-invocable: true
28
- description: Create a well-structured pull request
40
+ description: >-
41
+ Create a well-structured pull request from current changes. Use when
42
+ the developer is ready to submit work, says "create a PR", or "open
43
+ a pull request". Analyzes changes, runs pre-flight checks, drafts
44
+ description, and creates the PR via gh CLI.
29
45
  ---
30
46
 
31
47
  `,
32
48
  debug: `---
33
49
  user-invocable: true
34
- description: Systematically investigate and fix bugs
50
+ description: >-
51
+ Systematically investigate and fix bugs. Use when the developer
52
+ reports a bug, encounters an error, or says "debug this" or "why
53
+ is this failing". Reproduces the issue, isolates root cause, writes
54
+ regression test, and implements minimal fix.
35
55
  ---
36
56
 
37
57
  `,
38
58
  audit: `---
39
59
  user-invocable: true
40
- description: Run a project compliance audit against team standards
60
+ description: >-
61
+ Run a comprehensive project compliance audit against team standards.
62
+ Use when the developer wants to assess project health, check compliance,
63
+ or says "audit this project". Checks 15 categories including documentation,
64
+ testing, CI/CD, security, and AI tool setup. Produces a structured
65
+ report with scores and actionable fixes.
41
66
  ---
42
67
 
43
68
  `,
44
69
  update: `---
45
70
  user-invocable: true
46
- description: Update Melt skills and standards to the latest version
71
+ description: >-
72
+ Update Melt skills and standards to the latest version. Use when the
73
+ developer wants the latest skill templates, says "update melt", or
74
+ after a new meltctl version is released. Fetches latest templates,
75
+ preserves project customizations in AGENTS.md, and merges changes.
47
76
  ---
48
77
 
49
78
  `,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.9.1",
3
+ "version": "4.11.0",
4
4
  "description": "AI-first development tools for teams - set up AGENTS.md, Claude Code, Cursor, and Copilot standards",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",