Add examples/: agent templates for building on TrueForge - #390
Draft
shubhamagarwal-create wants to merge 3 commits into
Draft
Add examples/: agent templates for building on TrueForge#390shubhamagarwal-create wants to merge 3 commits into
shubhamagarwal-create wants to merge 3 commits into
Conversation
Ten example agents, each an agent.json definition plus a README covering what it does, the connectors and skills it uses, the auth and sandbox it needs, sample prompts, how it works, and ways to extend it: security-auditor, claim-red-teamer, decision-brief, codebase-onboarding, ci-fixer, db-analyst, issue-triage, incident-investigator, knowledge-capture, and bring-your-own-mcp (a small HTTP MCP server to copy for a custom API). Every example uses connectors that authenticate with no credentials or a self-serve key or free account, and keeps credentials on the connector rather than in the spec, so the agent.json files are safe to share. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
shubhamagarwal-create
requested review from
bhaveshpatel640,
chiragjn,
debajyoti-truefoundry,
heerambavi1998,
sr07asthana and
thesujai
as code owners
August 21, 2026 10:14
|
`eslint .` lints examples/, and the flat config does not register fetch, AbortSignal, or URLSearchParams as globals, so no-undef failed. Declare them with a /* global */ comment (eslint-env is ignored under flat config). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
chiragjn
marked this pull request as draft
August 24, 2026 09:56
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.
Adds an
examples/directory with ten example agents people can copy as starting points for building on TrueForge. Each is anagent.jsondefinition plus a README covering what it does, the connectors and skills it uses, the auth and sandbox it needs, sample prompts, how it works, and ways to extend it.Examples
Notes
agent.json, so the specs are safe to share.validateAgentSpec: all specs parse, and connector/skill names, fields, and setup order match what the harness requires (including configuring skills under Settings → Skills before create).bring-your-own-mcp/mcp-server.mjsis a runnable no-auth MCP over Open-Meteo; its endpoints were checked live.Note
Low Risk
Documentation and example specs only; no product runtime, auth, or data-path changes. Write tools in examples are gated by approval in the specs.
Overview
Adds a new
examples/tree of ten copyable agent templates so people can start from real TrueForge specs instead of a blankagent.json.Each example is an
agent.jsonplus a README (setup, sample prompts, how it works). Specs use catalog connectors with no paid plans, keep credentials out of the files, and demonstrate harness features: sub-agents, Code Mode, skills, write approvals, and generative UI.Also includes
bring-your-own-mcp: a small HTTP MCP (Open-Meteo weather) you can run locally and adapt to a custom API.Reviewed by Cursor Bugbot for commit 314875b. Bugbot is set up for automated code reviews on this repo. Configure here.