@trygentic/agentloop 0.6.0-alpha.6 → 0.7.0-alpha.6
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 +2 -30
- package/bin/agentloop +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -645,13 +645,9 @@ AgentLoop uses [OpenCode](https://github.com/anthropics/opencode) as a git submo
|
|
|
645
645
|
### Supported Providers
|
|
646
646
|
|
|
647
647
|
All providers supported by OpenCode (via Vercel AI SDK):
|
|
648
|
-
- **Anthropic** - Claude
|
|
649
|
-
- **OpenAI** -
|
|
650
|
-
- **Google** - Gemini Pro, Gemini Flash
|
|
651
|
-
- **xAI** - Grok
|
|
652
|
-
- **DeepSeek** - DeepSeek Chat, DeepSeek Coder
|
|
648
|
+
- **Anthropic** - Claude Opus, Claude Sonnet, Claude Haiku
|
|
649
|
+
- **OpenAI** - Codex models
|
|
653
650
|
- **OpenCode Zen** - Free tier for getting started
|
|
654
|
-
- And many more through OpenRouter
|
|
655
651
|
|
|
656
652
|
|
|
657
653
|
## MCP Servers
|
|
@@ -709,30 +705,6 @@ For more MCP integration examples, see [docs/mcp/GITHUB_MCP_INTEGRATION.md](./do
|
|
|
709
705
|
|
|
710
706
|
Built-in agent templates are distributed as part of the npm package in the `.claude/agents/` directory. When you install AgentLoop, these templates are automatically available and loaded by the agent system.
|
|
711
707
|
|
|
712
|
-
## Migration Notes
|
|
713
|
-
|
|
714
|
-
This project recently migrated from a Single Executable Application (SEA) binary distribution to a standard npm package. See [docs/SEA_MIGRATION.md](./docs/SEA_MIGRATION.md) for details about the changes and benefits.
|
|
715
|
-
|
|
716
|
-
## Contributing
|
|
717
|
-
|
|
718
|
-
Contributions are welcome! Please ensure:
|
|
719
|
-
|
|
720
|
-
1. Code follows the existing style (run `npm run format`)
|
|
721
|
-
2. TypeScript compiles without errors (`npm run typecheck`)
|
|
722
|
-
3. Linting passes (`npm run lint`)
|
|
723
|
-
4. Tests pass (`npm test`)
|
|
724
|
-
|
|
725
|
-
## Additional Documentation
|
|
726
|
-
|
|
727
|
-
For more detailed information about specific features:
|
|
728
|
-
|
|
729
|
-
- **[Architecture Overview](docs/architecture/overview.md)**: OpenCode integration and system architecture
|
|
730
|
-
- **[Project-Scoped Tasks](docs/PROJECT_SCOPED_TASKS.md)**: How tasks are isolated by project directory
|
|
731
|
-
- **[Project Metadata](docs/PROJECT_METADATA.md)**: Understanding project_name and project_id fields for remote syncing
|
|
732
|
-
- **[Authentication](docs/auth/IMPLEMENTATION.md)**: Authentication flow and credential management
|
|
733
|
-
- **[Mixpanel Integration](docs/MIXPANEL_IMPLEMENTATION.md)**: Telemetry and analytics
|
|
734
|
-
- **[Other Documentation](docs/)**: Additional implementation details and guides
|
|
735
|
-
|
|
736
708
|
## License
|
|
737
709
|
|
|
738
710
|
See [License](./license)
|
package/bin/agentloop
CHANGED
|
@@ -47,7 +47,7 @@ fi
|
|
|
47
47
|
|
|
48
48
|
PACKAGE_NAME="@trygentic/agentloop-${PLATFORM}-${ARCH}${SUFFIX}"
|
|
49
49
|
NODE_MODULES="$DIR/../node_modules"
|
|
50
|
-
PLATFORM_BIN="$NODE_MODULES/$PACKAGE_NAME/bin/agentloop
|
|
50
|
+
PLATFORM_BIN="$NODE_MODULES/$PACKAGE_NAME/bin/agentloop"
|
|
51
51
|
|
|
52
52
|
if [ -x "$PLATFORM_BIN" ]; then
|
|
53
53
|
exec "$PLATFORM_BIN" "$@"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trygentic/agentloop",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0-alpha.6",
|
|
4
4
|
"description": "AI-powered autonomous coding agent",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentloop": "./bin/agentloop"
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"postinstall": "node ./scripts/postinstall.mjs"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@trygentic/agentloop-darwin-arm64": "0.
|
|
13
|
-
"@trygentic/agentloop-linux-x64": "0.
|
|
14
|
-
"@trygentic/agentloop-windows-x64": "0.
|
|
12
|
+
"@trygentic/agentloop-darwin-arm64": "0.7.0-alpha.6",
|
|
13
|
+
"@trygentic/agentloop-linux-x64": "0.7.0-alpha.6",
|
|
14
|
+
"@trygentic/agentloop-windows-x64": "0.7.0-alpha.6"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18.0.0"
|