Ship docs in the package, fix the site path in the README - #115
Open
DavertMik wants to merge 1 commit into
Open
Conversation
Agents driving Explorbot were pointed at node_modules/explorbot/docs/, which never existed: files listed dist/, src/, bin/, rules/, assets/ and models.json, but not docs/. - Ship docs/ in the npm package. - README: output lands in ~/.explorbot/sites/<host>/, not state/. - agentic-usage.md: the global config holds models and keys, never a site. Commands that take no URL argument read EXPLORBOT_URL. - commands.md: same rule, plus the missing mistral provider. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
DavertMik
force-pushed
the
fix/global-setup-for-agents
branch
from
August 15, 2026 21:38
c046fd0 to
3bd3a54
Compare
Explorbot Self-RegressionCommit
Attempt details
Session analysis — basic (native): Session AnalysisThe Issues module core functionality was validated: creating issues, searching, filtering by label/status, and viewing details all work as expected. Multiple automation retry patterns observed across tests but all passed verification. Coverage
What works
Execution Issues
|
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.
Found while checking the
explorbot-setupskill againstdocs/workflow/agentic-usage.md. Docs only, plus one line ofpackage.json.docs/ships in the npm packagefileslisteddist/,src/,bin/,rules/,assets/sample-files/, andmodels.json— no docs. Sonode_modules/explorbot/docs/did not exist on any install, and an agent asking "what does--configuredo" had nothing local to read. Confirmed against a real install.Doc fixes
README.mdsaid output lands in~/.explorbot/state/<host>/; sites are registered under~/.explorbot/sites/<host>/.agentic-usage.mdandcommands.mdnow state that the global config holds models and keys and never a site, and that the commands taking no URL argument —test,learn,knows,experience,compact— readEXPLORBOT_URL. That was undocumented, and the failure (No site to explore) is easy to hit on a first agentic run.commands.mdgains the missingmistralin its provider list.An earlier revision of this PR added
init --global --urlto pin a site in the global config. Dropped: the global install is machine-wide and every run names its own site, so a default site there is the wrong shape.🤖 Generated with Claude Code