docs(ton-bridge): clarify auto-loading and optional config#28
Merged
xlabtg merged 3 commits intoxlabtg:mainfrom Mar 19, 2026
Merged
docs(ton-bridge): clarify auto-loading and optional config#28xlabtg merged 3 commits intoxlabtg:mainfrom
xlabtg merged 3 commits intoxlabtg:mainfrom
Conversation
Adding .gitkeep for PR creation (default mode). This file will be removed when the task is complete. Issue: xlabtg#27
… config.yaml entry required The plugin is auto-loaded from ~/.teleton/plugins/ directory — no plugins: section entry is needed in config.yaml. Configuration is optional: defaultConfig provides working defaults out of the box. Updated README.md to: - Clarify auto-loading behavior after installation - Move usage examples before configuration (matches other plugins) - Mark configuration as optional with explicit note - Use section naming consistent with other plugins (Install, Usage examples, Tool schemas) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This reverts commit d73af56.
Author
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
🤖 Models used:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
Author
✅ Ready to mergeThis pull request is now ready to be merged:
Monitored by hive-mind with --auto-restart-until-mergeable flag |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #27
Root cause analysis
The "not started" message users see is the LLM's response when it can't find the
ton_bridge_*tools. The teleton-agent plugin-loader automatically loads all plugins found in~/.teleton/plugins/— noplugins:section entry is needed inconfig.yaml.The plugin code itself is correct (all 25 tests pass, validation passes). The confusion arose because:
plugins:config section is optional (defaults work out-of-the-box)Changes
plugins/ton-bridge/README.md~/.teleton/plugins/. No changes toconfig.yamlare required."casino,ton-trading-botpattern)Install,Usage examples,Tool schemas)How the loader works (for reference)
From
teleton-agent/src/agent/tools/plugin-loader.ts:The
plugins:section inconfig.yamlis only needed to override defaults, not to enable the plugin.Test plan
npm test)npm run validate—[OK] ton-bridge: 3 tool(s) validated)🤖 Generated with Claude Code