Skip to content

Add .claude/launch.json dev server configurations#2332

Open
paulthanson082-glitch wants to merge 7 commits intodocker:mainfrom
paulthanson082-glitch:claude/elastic-blackwell
Open

Add .claude/launch.json dev server configurations#2332
paulthanson082-glitch wants to merge 7 commits intodocker:mainfrom
paulthanson082-glitch:claude/elastic-blackwell

Conversation

@paulthanson082-glitch
Copy link
Copy Markdown

@paulthanson082-glitch paulthanson082-glitch commented Apr 6, 2026

Summary

  • Adds .claude/launch.json with dev server launch configurations for the project
  • Covers the cagent API server (port 8080), A2A server (port 9000), MCP HTTP server (port 8081), and Jaeger tracing UI (port 16686)

Test plan

  • Verify each server starts correctly via cagent api, cagent a2a, cagent mcp --http, and docker compose up jaeger
  • Confirm ports match expected values (8080, 9000, 8081, 16686)

🤖 Generated with Claude Code

paulthanson082-glitch and others added 7 commits February 8, 2026 06:31
Co-authored-by: paulthanson082-glitch <252514830+paulthanson082-glitch@users.noreply.github.com>
Adds launch configurations for the cagent API server (port 8080),
A2A server (port 9000), MCP HTTP server (port 8081), and Jaeger
tracing UI (port 16686).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@paulthanson082-glitch paulthanson082-glitch requested a review from a team as a code owner April 6, 2026 19:39
Copilot AI review requested due to automatic review settings April 6, 2026 19:39
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds local development launch configurations (Claude Code) for starting common cagent servers, and includes a couple of new example agent configs plus a small workflow guard for the nightly scan.

Changes:

  • Add .claude/launch.json with launch entries for API, A2A, MCP HTTP, and Jaeger.
  • Add new example agent YAML configs under examples/.
  • Update nightly scan workflow to skip the job when no LLM API key secrets are configured.

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.

File Description
.claude/launch.json Adds dev server launch configurations for cagent and Jaeger.
.github/workflows/nightly-scan.yml Adds conditional execution based on presence of API key secrets.
examples/new_agent.yaml Adds a scaffolded agent example with filesystem/shell/memory toolsets.
examples/scaffolded_default_agent.yaml Adds a minimal default scaffolded agent example.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +27 to +30
if: |
secrets.ANTHROPIC_API_KEY != '' ||
secrets.OPENAI_API_KEY != '' ||
secrets.GEMINI_API_KEY != ''
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The job-level if: is defined with a literal block scalar (|), which preserves newline characters in the expression. GitHub Actions if expressions are safer as a single-line expression or a folded scalar (>-) so newlines don’t get passed into the expression parser. Consider rewriting this as if: secrets.ANTHROPIC_API_KEY != '' || secrets.OPENAI_API_KEY != '' || secrets.GEMINI_API_KEY != '' (or using >- to fold lines).

Suggested change
if: |
secrets.ANTHROPIC_API_KEY != '' ||
secrets.OPENAI_API_KEY != '' ||
secrets.GEMINI_API_KEY != ''
if: secrets.ANTHROPIC_API_KEY != '' || secrets.OPENAI_API_KEY != '' || secrets.GEMINI_API_KEY != ''

Copilot uses AI. Check for mistakes.
Comment on lines +1 to +5
{
"version": "0.0.1",
"configurations": [
{
"name": "cagent API server",
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description/title focuses on adding .claude/launch.json, but this PR also adds new example agent configs under examples/ and changes the nightly workflow. Please update the PR description (or split into separate PRs) so reviewers understand the full scope and intent of these additional changes.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants