@unravel-tech/thing 0.4.0 → 0.4.1
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/package.json +10 -3
- package/src/index.js +5 -3
package/package.json
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.4.
|
|
7
|
-
"description": "
|
|
6
|
+
"version": "0.4.1",
|
|
7
|
+
"description": "Artifacts for any coding agent. Publish what Claude Code, Codex, Cursor or Gemini CLI builds to a durable link, with versions and comments on the page.",
|
|
8
|
+
"mcpName": "io.github.unravel-team/thing",
|
|
8
9
|
"license": "MIT",
|
|
9
10
|
"repository": {
|
|
10
11
|
"type": "git",
|
|
@@ -24,7 +25,13 @@
|
|
|
24
25
|
"html",
|
|
25
26
|
"cli",
|
|
26
27
|
"agents",
|
|
27
|
-
"claude-code"
|
|
28
|
+
"claude-code",
|
|
29
|
+
"mcp",
|
|
30
|
+
"model-context-protocol",
|
|
31
|
+
"share",
|
|
32
|
+
"publish",
|
|
33
|
+
"codex",
|
|
34
|
+
"cursor"
|
|
28
35
|
],
|
|
29
36
|
"scripts": {
|
|
30
37
|
"smoke": "bun test/cli-smoke.mjs",
|
package/src/index.js
CHANGED
|
@@ -414,7 +414,7 @@ const MCP_TOOLS = [
|
|
|
414
414
|
{
|
|
415
415
|
name: "push_artifact",
|
|
416
416
|
description:
|
|
417
|
-
"
|
|
417
|
+
"Use this whenever the user wants to share, send, show, or publish something you produced: a report, a dashboard, a prototype, a Markdown doc, a PDF, an image. Publishes it to a durable URL that stays live, and returns the link. Pushing the same name again creates a new version at the same link rather than a second link, so prefer reusing a name over inventing one. Pass either `path` (html, md, pdf, png, jpg, gif, webp) or inline `content` with a `filename` (html or md).",
|
|
418
418
|
inputSchema: {
|
|
419
419
|
type: "object",
|
|
420
420
|
properties: {
|
|
@@ -430,7 +430,8 @@ const MCP_TOOLS = [
|
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
432
|
name: "list_artifacts",
|
|
433
|
-
description:
|
|
433
|
+
description:
|
|
434
|
+
"Use this to find a link the user published earlier, or to check whether something is already published before pushing it again. Lists artifacts the signed-in user can see, with team, visibility and title.",
|
|
434
435
|
inputSchema: {
|
|
435
436
|
type: "object",
|
|
436
437
|
properties: {
|
|
@@ -441,7 +442,8 @@ const MCP_TOOLS = [
|
|
|
441
442
|
},
|
|
442
443
|
{
|
|
443
444
|
name: "whoami",
|
|
444
|
-
description:
|
|
445
|
+
description:
|
|
446
|
+
"Use this to confirm the user is signed in and which team will own a new artifact. Shows the account, the server, and where pushes land when no team is named.",
|
|
445
447
|
inputSchema: { type: "object", properties: {} }
|
|
446
448
|
}
|
|
447
449
|
];
|