standup-mr 0.1.1 → 0.1.2
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 +11 -3
- package/mcp/README.md +1 -1
- package/package.json +2 -2
- /package/{skill → skills/standup}/SKILL.md +0 -0
package/README.md
CHANGED
|
@@ -46,14 +46,22 @@ npx standup-mr fetch --markdown | npx standup-mr post --slack "$SLACK_WEBHOOK_UR
|
|
|
46
46
|
**MCP server** (`mcp/`) — one tool, `get_standup_data`, for Claude Desktop,
|
|
47
47
|
Cursor, or any MCP client. See [`mcp/README.md`](mcp/README.md).
|
|
48
48
|
|
|
49
|
-
**Claude Code skill** (`
|
|
49
|
+
**Claude Code skill** (`skills/standup/`) — the note-writing playbook. Install
|
|
50
|
+
it as a plugin from inside Claude Code:
|
|
50
51
|
|
|
51
|
-
```
|
|
52
|
-
|
|
52
|
+
```
|
|
53
|
+
/plugin marketplace add Jubstaaa/standup-mr
|
|
54
|
+
/plugin install standup@standup-mr
|
|
53
55
|
```
|
|
54
56
|
|
|
55
57
|
Then type `/standup`.
|
|
56
58
|
|
|
59
|
+
Or, without the plugin marketplace, copy it in manually:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
cp -r skills/standup ~/.claude/skills/standup
|
|
63
|
+
```
|
|
64
|
+
|
|
57
65
|
## `--markdown` is a digest, not a written note
|
|
58
66
|
|
|
59
67
|
`--markdown` organizes the raw material into readable sections. It does **not**
|
package/mcp/README.md
CHANGED
|
@@ -30,4 +30,4 @@ npm install standup-mr @modelcontextprotocol/sdk
|
|
|
30
30
|
not rely on that inside a container.
|
|
31
31
|
|
|
32
32
|
The tool returns data only. Ask your client to write the note, or use the Claude
|
|
33
|
-
Code skill in `
|
|
33
|
+
Code skill in `skills/standup/`, which carries the note-writing rules.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "standup-mr",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Standup notes from merge request state, not commit logs.",
|
|
5
5
|
"keywords": ["standup", "gitlab", "merge-request", "cli", "mcp"],
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"bin": { "standup": "./dist/cli.js" },
|
|
32
32
|
"main": "./dist/index.js",
|
|
33
33
|
"types": "./dist/index.d.ts",
|
|
34
|
-
"files": ["dist", "
|
|
34
|
+
"files": ["dist", "skills", "mcp/README.md", "README.md", "LICENSE"],
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsup",
|
|
37
37
|
"test": "bun test",
|
|
File without changes
|