matimo 0.1.0-alpha.1 → 0.1.0-alpha.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 CHANGED
@@ -69,7 +69,7 @@ You end up duplicating tool logic, schemas, and integrations repeatedly.
69
69
 
70
70
  I built Matimo because I needed it while working on my own agent product — and I couldn't find a truly framework-agnostic, fully open-source alternative (most are paid or tightly coupled to one framework).
71
71
 
72
- I'm a solo developer (nomadic coder at heart), so this project needs **your help** to become the go-to standard for agent tools.
72
+ I'm a solo developer (nomadic coder at heart) vibe coding, **all help is appriciated** to make matimo a go-to standard for agent tools.
73
73
 
74
74
  ### How You Can Help Right Now
75
75
 
@@ -291,7 +291,8 @@ See [SDK Usage Patterns - Level 2](#level-2-framework-integration-patterns-with-
291
291
  **MCP Server (Claude Integration)**
292
292
 
293
293
  ```typescript
294
- import { MCPServer } from 'matimo/mcp';
294
+ // MCP Server - Coming in Phase 2
295
+ // import { MCPServer } from 'matimo/mcp';
295
296
 
296
297
  const server = new MCPServer({
297
298
  toolsPath: './tools',
@@ -648,4 +649,4 @@ Contributions are welcome — see [CONTRIBUTING.md](./CONTRIBUTING.md) for guide
648
649
 
649
650
  **Ready to integrate AI tools across your framework?**
650
651
 
651
- [Get Started Now →](./docs/QUICK_START.md)
652
+ [Get Started Now →](./docs/getting-started/QUICK_START.md)
package/docs/RELEASES.md CHANGED
@@ -1,3 +1,24 @@
1
+ # v0.1.0-alpha.2
2
+
3
+ > Improved alpha.1 release - Better npm workflow, fixed exports, accurate feature descriptions
4
+
5
+ **Released**: February 4, 2026
6
+
7
+ ## What's Improved
8
+
9
+ ### Release & Distribution
10
+ - Fixed npm publish workflow (dist-tag 'next' for pre-releases)
11
+ - Replaced deprecated GitHub Actions (softprops/action-gh-release@v2)
12
+ - Proper semantic versioning for release titles
13
+ - Fixed broken documentation links in releases
14
+
15
+ ### Package & Exports
16
+ - Explicit package exports for main and MCP modules
17
+ - Accurate npm description (reflects current Phase 1 scope)
18
+ - Proper Node.js module resolution
19
+
20
+ ---
21
+
1
22
  # v0.1.0-alpha.1
2
23
 
3
24
  > First alpha release - Core OAuth2, tool execution, and SDK patterns
package/docs/ROADMAP.md CHANGED
@@ -122,11 +122,11 @@
122
122
  ## Release Thoughts
123
123
 
124
124
  ```
125
- v0.1.0-alpha.1 Feb 2026 (Current)
125
+ v0.1.0-alpha.1 Feb 2026.
126
126
 
127
- v0.1.0-alpha.2 3rd week Feb 2026.
127
+ v0.1.0-alpha.2 Feb 2026 (Current).
128
128
 
129
- v0.1.0-alpha.3 1st week Mar 2026.
129
+ v0.1.0-alpha.3 Feb 2026.
130
130
 
131
131
  v0.1.0 End of March 2026.
132
132
  ```
@@ -110,7 +110,8 @@ try {
110
110
  ### Use with MCP Server
111
111
 
112
112
  ```typescript
113
- import { MCPServer } from 'matimo/mcp';
113
+ // MCP Server - Coming in Phase 2
114
+ // import { MCPServer } from 'matimo/mcp';
114
115
 
115
116
  const server = new MCPServer({
116
117
  toolsPath: './tools',
package/docs/index.md CHANGED
@@ -206,7 +206,8 @@ See [Quick Start](./getting-started/QUICK_START.md) and [API Reference](./api-re
206
206
  Matimo can run as an MCP server, allowing Claude and other clients to discover and use tools:
207
207
 
208
208
  ```typescript
209
- import { MCPServer } from 'matimo/mcp';
209
+ // MCP Server - Coming in Phase 2
210
+ // import { MCPServer } from 'matimo/mcp';
210
211
 
211
212
  const server = new MCPServer({ toolsPath: './tools', port: 3000 });
212
213
  await server.start();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "matimo",
3
- "version": "0.1.0-alpha.1",
4
- "description": "Framework-agnostic YAML-driven tool ecosystem for AI agents. Define tools once in YAML, use them everywhere: SDK, MCP, CLI, REST API.",
3
+ "version": "0.1.0-alpha.2",
4
+ "description": "Framework-agnostic YAML-driven tool ecosystem for AI agents. Define tools once in YAML and run them via a TypeScript/JavaScript SDK.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
@@ -10,6 +10,10 @@
10
10
  ".": {
11
11
  "types": "./dist/index.d.ts",
12
12
  "default": "./dist/index.js"
13
+ },
14
+ "./mcp": {
15
+ "types": "./dist/mcp/mcp-server.d.ts",
16
+ "default": "./dist/mcp/mcp-server.js"
13
17
  }
14
18
  },
15
19
  "engines": {