agentinit 0.1.0 → 1.0.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/CHANGELOG.md +21 -0
- package/README.md +32 -0
- package/dist/agentinit-1.0.0.tgz +0 -0
- package/dist/index.js +6700 -3483
- package/package.json +20 -10
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# 1.0.0 (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add bun setup to GitHub Actions CI workflow ([b52cc80](https://github.com/agentinit/agentinit/commit/b52cc80aaa5427f28bec728dd07c1470cdf1540c))
|
|
7
|
+
* add bun setup to release workflow ([ad09617](https://github.com/agentinit/agentinit/commit/ad096176a903e860c6f5eab6a8ad845b2beefa7c))
|
|
8
|
+
* lints ([33b665f](https://github.com/agentinit/agentinit/commit/33b665f2bf0f6b30995f70feb96d1782a5312010))
|
|
9
|
+
* lints ([22c3996](https://github.com/agentinit/agentinit/commit/22c3996f1df4825e7c346c027081a127bd072c33))
|
|
10
|
+
* resolve test failure in Agent.global.test.ts ([2de195c](https://github.com/agentinit/agentinit/commit/2de195c593c3f5fdaf7e809098af1b2c74836f48))
|
|
11
|
+
* resolve TypeScript lint error with exactOptionalPropertyTypes ([5bb8353](https://github.com/agentinit/agentinit/commit/5bb8353d20ae8159958f9b17aeb338196ac110b8))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* apply mcp ([cf94518](https://github.com/agentinit/agentinit/commit/cf94518d05c494f755d0e56d7bc70b9aa0efdb30))
|
|
17
|
+
* ci/cd ([2ebc5b6](https://github.com/agentinit/agentinit/commit/2ebc5b6c0b7599eebaaa703e10d881b8a8ed1080))
|
|
18
|
+
* first commit ([e0e3de0](https://github.com/agentinit/agentinit/commit/e0e3de040aed1ebacea26a05d780ca0b143bb3ae))
|
|
19
|
+
* fixing tsc ([7e35782](https://github.com/agentinit/agentinit/commit/7e3578216d6d541e02e745b96541a21515690e20))
|
|
20
|
+
* implement comprehensive multi-agent MCP configuration system ([3da51c0](https://github.com/agentinit/agentinit/commit/3da51c036c24faa49437db61fadad72bc9712f03))
|
|
21
|
+
* reorganize tests to tests/ directory and enhance MCP parser ([790e16c](https://github.com/agentinit/agentinit/commit/790e16c289354acc5b6a81e814b70b409263247b))
|
package/README.md
CHANGED
|
@@ -90,6 +90,38 @@ agentinit mcp --search <query> # Search MCPs
|
|
|
90
90
|
agentinit mcp --install <name> # Install specific MCP
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
+
### `agentinit apply`
|
|
94
|
+
|
|
95
|
+
Apply configurations including MCP server setup.
|
|
96
|
+
|
|
97
|
+
#### MCP Configuration
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
# Configure STDIO MCP with arguments
|
|
102
|
+
npx agentinit apply \
|
|
103
|
+
--mcp-stdio context7 "npx -y @upstash/context7-mcp" --args "--api-key=YOUR_API_KEY"
|
|
104
|
+
|
|
105
|
+
# Configure multiple MCPs in one command
|
|
106
|
+
npx agentinit apply \
|
|
107
|
+
--mcp-stdio supabase "npx -y @supabase/mcp-server-supabase@latest" \
|
|
108
|
+
--args "--read-only --project-ref=<project-ref>" \
|
|
109
|
+
--env "SUPABASE_ACCESS_TOKEN=<personal-access-token>" \
|
|
110
|
+
--mcp-http notion_api "https://mcp.notion.com/mcp" \
|
|
111
|
+
--mcp-sse notion_events "https://mcp.notion.com/sse"
|
|
112
|
+
|
|
113
|
+
# Configure HTTP MCP with authentication
|
|
114
|
+
npx agentinit apply \
|
|
115
|
+
--mcp-http github "https://api.githubcopilot.com/mcp/" --auth "Bearer YOUR_GITHUB_PAT"
|
|
116
|
+
|
|
117
|
+
# Configure Docker-based MCP with environment
|
|
118
|
+
npx agentinit apply \
|
|
119
|
+
--mcp-stdio browserbase "docker run -i --rm ghcr.io/metorial/mcp-container--browserbase--mcp-server-browserbase--browserbase node cli.js" \
|
|
120
|
+
--env "BROWSERBASE_API_KEY=browserbase-api-key"
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
This generates `.agentinit/agentinit.toml` with your MCP configurations.
|
|
124
|
+
|
|
93
125
|
## 🏗️ Project Structure
|
|
94
126
|
|
|
95
127
|
AgentInit creates and manages these key files:
|
|
Binary file
|