Step 5: RockBot as Foragent's first real user#7
Merged
rockfordlhotka merged 2 commits intomainfrom Apr 22, 2026
Merged
Conversation
Pin docker-compose to rockylhotka/rockbot-agent:0.8.5 (the latest framework release carrying the step 1/3 fixes) and seed post-to-site into RockBot's well-known-agents.json + agent-trust.json so all three skills are discoverable and approved. Validation ran through the full HTTP A2A gateway: agent-card, fetch-page-title, extract-structured-data (LLM round-trip), and post-to-site up to broker lookup / poster dispatch. Real Bluesky posting stays gated on FORAGENT_BLUESKY_* credentials per user scope. Framework-feedback step 5 section added. Main observation: agent-card metadata is now duplicated three ways (capability code, A2A/gateway options, rockbot-side seed) — candidate for a "discover peer card at first contact" framework feature. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Original wording implied three places inside Foragent. The third copy actually lives in rockbot-agent's well-known-agents.json peer registry and is a framework design issue. Filed as rockbot#287. Separated the trust-reseed observation since that's a distinct (related but legitimate) problem. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
rockylhotka/rockbot-agent:0.8.5(first framework release carrying the step 1/3 fixes).post-to-siteintodeploy/rockbot-seed/well-known-agents.jsonand intoagent-trust.json'sapprovedSkillsso RockBot can both discover and invoke the third capability.Gateway__Descriptionfrom "fetch-page-title in step 1" to the three-skill current state.docs/framework-feedback.md§"Step 5" section capturing the validation run + a new observation: agent-card metadata is now duplicated three ways (capability code, A2A/gateway options, rockbot-side seed).No Foragent code changes — this milestone is about formalizing RockBot as the first real A2A consumer per spec §9.1.
Test plan
docker compose up --buildwith 0.8.5 rockbot-agent image starts cleanly on a freshrockbot-datavolumeGET /.well-known/agent-card.jsonexposes all three skillsfetch-page-titleagainst https://example.com returns"Example Domain"extract-structured-data(JSON body) round-trips through the LLM and returns{"heading":"Example Domain"}post-to-sitewith unknown site returns safe dispatcher error listing known sitespost-to-sitewith configured site + missing credential returns"Credential '…' is not configured."(no value leak)/data/agent/agent-trust.jsonand/data/agent/well-known-agents.jsoninvoke_agent) — harness is running at http://localhost:8080 for ad-hoc validation; not gated on this PRFORAGENT_BLUESKY_*are populated in.env🤖 Generated with Claude Code