toolcapsule 0.1.0-alpha.12 → 0.1.0-alpha.13

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
@@ -5,17 +5,17 @@
5
5
  [![License: MIT](https://img.shields.io/badge/license-MIT-black?style=flat-square)](LICENSE)
6
6
  [![GitHub Repo stars](https://img.shields.io/github/stars/RainSunMe/toolcapsule?style=flat-square)](https://github.com/RainSunMe/toolcapsule)
7
7
 
8
- > MCP-to-Skill for heavy MCP tools.
8
+ > AI-first workflow manager for heavy MCP tools.
9
9
 
10
- **ToolCapsule** turns heavy MCP servers into lightweight, lazy-loaded, file-first **Agent Skills** with saved runs and patch-and-retry recovery.
10
+ **ToolCapsule** inventories your MCPs, turns heavy ones into lightweight, lazy-loaded, file-first **Agent Skills**, and keeps tool calls auditable with saved runs and patch-and-retry recovery.
11
11
 
12
- If you are looking for **lazy MCP**, **MCP to Skill**, **MCP-to-Skill**, or **Agent Skills for MCP tools**, ToolCapsule is built for that workflow.
12
+ If you are looking for **lazy MCP**, **MCP to Skill**, **MCP-to-Skill**, or **Agent Skills for MCP tools**, ToolCapsule covers that workflow without replacing MCP.
13
13
 
14
14
  It is not a replacement for MCP or Skills. It is the missing workflow layer between them:
15
15
 
16
16
  ```text
17
17
  Heavy MCP server
18
- MCP-to-Skill workflow layer
18
+ AI-first ToolCapsule workflow layer
19
19
  → compact Agent Skill
20
20
  → local args/content files
21
21
  → auditable tool runs
@@ -36,9 +36,9 @@ But large MCP servers can be expensive in agent contexts:
36
36
  ToolCapsule keeps the MCP server as the source of truth, but exposes it through a lightweight Skill and local artifacts.
37
37
  Transport logs are quiet by default so remote MCP URLs are not printed during normal use. Set `TOOLCAPSULE_DEBUG=1` only when debugging.
38
38
 
39
- ## MCP-to-Skill and lazy MCP
39
+ ## AI-first MCP workflow
40
40
 
41
- ToolCapsule is an **MCP-to-Skill workflow layer**. It imports existing MCP configurations and generates Agent Skills that let agents lazy-load MCP schemas only when needed.
41
+ ToolCapsule is an **AI-first workflow manager for heavy MCP tools**. It inventories existing MCP configurations, links selected servers into ToolCapsule profiles, and generates Agent Skills that let agents lazy-load MCP schemas only when needed.
42
42
 
43
43
  This is the practical version of a lazy MCP workflow:
44
44
 
@@ -85,6 +85,8 @@ AI-first onboarding: install the ToolCapsule Skill into your coding agent, then
85
85
  npx skills add RainSunMe/toolcapsule --skill toolcapsule
86
86
  ```
87
87
 
88
+ `npx skills add toolcapsule` is not enough today because the `skills` CLI treats a bare value as a git source. Use the GitHub shorthand above.
89
+
88
90
  For a specific agent or global install:
89
91
 
90
92
  ```bash
@@ -222,6 +224,7 @@ Early alpha. APIs may change before v1.0.
222
224
  - [Next steps](docs/next-steps.md)
223
225
  - [Release checklist](docs/release-checklist.md)
224
226
  - [Agent tool compatibility research](docs/agent-tool-compatibility.md)
227
+ - [Comparison with native MCP, lazy-mcp, and MCP-to-Skill generators](docs/comparison.md)
225
228
  - [Roadmap](ROADMAP.md)
226
229
 
227
230
  ## License
@@ -0,0 +1,69 @@
1
+ # Comparison: ToolCapsule, native MCP, lazy-mcp, and MCP-to-Skill generators
2
+
3
+ ToolCapsule is not a replacement for MCP. It is an AI-first workflow manager for heavy MCP tools.
4
+
5
+ It overlaps with lazy MCP proxies and MCP-to-Skill generators, but the product shape is different: ToolCapsule inventories existing MCPs, links selected heavy servers into Agent Skills, keeps payloads in files, and records runs for patch-and-retry recovery.
6
+
7
+ ## Summary
8
+
9
+ | Approach | Best for | What the agent sees | Main trade-off |
10
+ |---|---|---|---|
11
+ | Native MCP | Small, frequent tools | Full MCP tools exposed by the host | Heavy servers can add context and retry cost |
12
+ | `lazy-mcp` style proxy | Aggregating many MCP servers behind a few meta-tools | Meta-tools such as list/describe/invoke | Requires adding a proxy MCP server and meta-tool calling discipline |
13
+ | `mcp2skill` / `mcp-to-skill` style generators | One-time conversion of an MCP server into a Skill folder | Generated Skill and local executor/config | Often copies config into the Skill and is more generator-oriented |
14
+ | ToolCapsule | Heavy SaaS/document/workflow MCPs used by AI coding agents | Official ToolCapsule Skill plus generated MCP-specific Skills with tool summaries | Requires `tcap` CLI for file-first calls and run artifacts |
15
+
16
+ ## Native MCP vs ToolCapsule
17
+
18
+ Native MCP is the source of truth. ToolCapsule keeps it that way.
19
+
20
+ The difference is workflow:
21
+
22
+ - native MCP exposes tools directly to the host;
23
+ - ToolCapsule lets the agent inventory MCPs, enable selected heavy ones as Skills, and call them through local files;
24
+ - failed calls become patchable run artifacts instead of regenerated prompts.
25
+
26
+ Use native MCP directly for small, high-frequency tools. Use ToolCapsule for heavy, low-frequency, document/workflow-oriented MCPs.
27
+
28
+ ## `lazy-mcp` style proxy vs ToolCapsule
29
+
30
+ `lazy-mcp` is a client-agnostic MCP proxy. It aggregates MCP servers and exposes a small number of meta-tools such as list, describe, and invoke.
31
+
32
+ ToolCapsule is not a proxy. It is a Skill and file workflow:
33
+
34
+ - no replacement MCP proxy is required;
35
+ - existing MCP configs can be linked instead of copied;
36
+ - generated Skills include compact tool summaries;
37
+ - calls use `@args.json` and saved run directories;
38
+ - retry is done by patching local artifacts.
39
+
40
+ Use a proxy when you want one MCP endpoint that aggregates many servers. Use ToolCapsule when you want the coding agent to manage heavy MCP workflows through Skills and files.
41
+
42
+ ## `mcp2skill` / `mcp-to-skill` generators vs ToolCapsule
43
+
44
+ MCP-to-Skill generators convert a server into a Skill folder. That overlaps with one part of ToolCapsule.
45
+
46
+ ToolCapsule adds a broader workflow:
47
+
48
+ - AI-first onboarding via `npx skills add RainSunMe/toolcapsule --skill toolcapsule`;
49
+ - `tcap mcp list` inventory across workspace, user, and ToolCapsule profiles;
50
+ - `tcap mcp enable <server> --as <profile>` for selected heavy servers;
51
+ - linked profiles by default, so private MCP URLs are not copied into generated Skills;
52
+ - generated Skills with embedded tool summaries;
53
+ - file-first calls through `tcap call <profile> <tool> @args.json --save-run`;
54
+ - run artifacts under `.toolcapsule/runs/<profile>/<run-id>/`;
55
+ - deterministic patch-and-retry.
56
+
57
+ Use a generator when you only need a static Skill folder. Use ToolCapsule when you need an ongoing workflow for discovery, enabling, calling, auditing, and retrying heavy MCP tools.
58
+
59
+ ## Positioning
60
+
61
+ ToolCapsule should be described as:
62
+
63
+ > AI-first workflow manager for heavy MCP tools.
64
+
65
+ Expanded:
66
+
67
+ > ToolCapsule inventories your existing MCPs, turns selected heavy servers into lazy Agent Skills, and keeps calls file-first with auditable runs and patch-and-retry recovery.
68
+
69
+ Related terms such as lazy MCP, MCP-to-Skill, and Agent Skills for MCP are useful search terms, but ToolCapsule is broader than a proxy or one-shot Skill generator.
package/docs/concept.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Concept
2
2
 
3
- **ToolCapsule** is an MCP-to-Skill workflow layer for heavy MCP tools.
3
+ **ToolCapsule** is an AI-first workflow manager for heavy MCP tools.
4
4
 
5
5
  MCP connects agents to tools. Skills package repeatable agent workflows. ToolCapsule sits between them: it keeps MCP as the source of truth, but turns schema-heavy tools into compact, lazy-loaded, file-first Agent Skills.
6
6
 
package/docs/hero-copy.md CHANGED
@@ -4,7 +4,7 @@ Heavy MCP tools don't belong in your prompt.
4
4
 
5
5
  Put them in a ToolCapsule.
6
6
 
7
- ToolCapsule is MCP-to-Skill for heavy MCP tools. It turns schema-heavy MCP servers into lightweight, lazy-loaded Agent Skills with file-first calls and patch-and-retry recovery.
7
+ ToolCapsule is an AI-first workflow manager for heavy MCP tools. It inventories existing MCPs, turns selected heavy tools into lightweight, lazy-loaded Agent Skills, and keeps calls file-first with patch-and-retry recovery.
8
8
 
9
9
  If you are searching for lazy MCP, ToolCapsule is the workflow: keep MCP as the capability layer, expose an Agent Skill as the workflow layer, and load schemas only when needed.
10
10
 
package/docs/launch.md CHANGED
@@ -2,15 +2,15 @@
2
2
 
3
3
  ## One-line pitch
4
4
 
5
- MCP-to-Skill for heavy MCP tools.
5
+ AI-first workflow manager for heavy MCP tools.
6
6
 
7
7
  ## Short pitch
8
8
 
9
- ToolCapsule turns schema-heavy MCP servers into lightweight, lazy-loaded Agent Skills with file-first calls and patch-and-retry recovery. If you are looking for lazy MCP, this is the workflow layer.
9
+ ToolCapsule inventories existing MCPs, turns selected heavy servers into lazy Agent Skills, and keeps calls file-first with patch-and-retry recovery.
10
10
 
11
11
  ## Announcement draft
12
12
 
13
- MCP is becoming the standard way to connect agents to tools. Skills are becoming the standard way to package repeatable agent workflows. ToolCapsule connects the two: MCP-to-Skill for heavy tools.
13
+ MCP is becoming the standard way to connect agents to tools. Skills are becoming the standard way to package repeatable agent workflows. ToolCapsule connects the two as an AI-first workflow manager for heavy MCP tools.
14
14
 
15
15
  Large MCP servers can quietly eat your context window with long tool descriptions and schemas. ToolCapsule keeps MCP as the capability layer and turns heavy tools into compact, lazy-loaded Agent Skills. Large payloads live in files, every call can be recorded, and failed calls can be patched and retried without asking the model to regenerate everything.
16
16
 
@@ -36,7 +36,7 @@ New onboarding angle:
36
36
 
37
37
  Search angle:
38
38
 
39
- > Lazy MCP, MCP to Skill, MCP-to-Skill, Agent Skills for MCP tools — all describe the workflow ToolCapsule implements.
39
+ > Lazy MCP, MCP to Skill, MCP-to-Skill, Agent Skills for MCP tools — these are related search terms, but ToolCapsule is broader: inventory, enable, Skill generation, file-first calls, and patch-and-retry.
40
40
 
41
41
  Short demo:
42
42
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  ToolCapsule has reached a public alpha loop: GitHub repository, Vercel site, npm package, release workflow, and project skill are in place.
4
4
 
5
- The public positioning is now: MCP-to-Skill for heavy MCP tools. Keep future docs, demos, and releases aligned with lazy MCP, lazy-loaded Agent Skills, and Agent Skills for MCP search intent.
5
+ The public positioning is now: AI-first workflow manager for heavy MCP tools. Keep future docs, demos, and releases aligned with MCP inventory, lazy Agent Skills, file-first calls, and patch-and-retry.
6
6
 
7
7
  This document tracks what should happen next.
8
8
 
package/llms.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  # ToolCapsule
2
2
 
3
- ToolCapsule is MCP-to-Skill for heavy MCP tools. It turns schema-heavy MCP servers into lightweight, lazy-loaded Agent Skills with file-first calls and patch-and-retry recovery.
3
+ ToolCapsule is an AI-first workflow manager for heavy MCP tools. It inventories existing MCPs, turns selected heavy servers into lazy Agent Skills, and keeps calls file-first with patch-and-retry recovery.
4
4
 
5
5
  Use it when an AI agent needs a lazy MCP workflow: operate a heavy MCP server without carrying full tool schemas in every prompt.
6
6
 
@@ -24,23 +24,11 @@ Short command:
24
24
  tcap --help
25
25
  ```
26
26
 
27
- ## Install the Agent Skill
28
-
29
- Inside a workspace:
30
-
31
- ```bash
32
- tcap install-skill
33
- ```
34
-
35
- This creates:
36
-
37
- ```text
38
- .github/skills/toolcapsule/SKILL.md
39
- ```
27
+ Note: `npx skills add toolcapsule` is not enough today because the `skills` CLI treats a bare value as a git source. Use `RainSunMe/toolcapsule`.
40
28
 
41
29
  ## Convert an MCP server into a Skill workflow
42
30
 
43
- This is the MCP-to-Skill step: keep MCP as the capability layer and generate an Agent Skill as the workflow layer.
31
+ This is the ToolCapsule enable step: keep MCP as the capability layer and generate an Agent Skill as the workflow layer.
44
32
 
45
33
  Remote MCP:
46
34
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "toolcapsule",
3
- "version": "0.1.0-alpha.12",
4
- "description": "MCP-to-Skill for lazy-loaded, patchable Agent Skills from heavy MCP tools.",
3
+ "version": "0.1.0-alpha.13",
4
+ "description": "AI-first workflow manager for heavy MCP tools with lazy Agent Skills and patchable runs.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "toolcapsule": "dist/cli.js",