Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions internal/templates/common/ai/agents.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ No skills defined - this agent provides basic A2A communication without speciali
The agent exposes the following HTTP endpoints:

- `GET /.well-known/agent-card.json` - Agent metadata and capabilities
- `GET /health` - Health check endpoint
- `POST /a2a` - JSON-RPC endpoint for all A2A operations (skill execution, streaming, etc.)

## Environment Setup
Expand Down
4 changes: 2 additions & 2 deletions internal/templates/common/docs/README.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ docker run -p {{ .ADL.Spec.Server.Port | default 8080 }}:{{ .ADL.Spec.Server.Por
- ✅ State transition history
{{- end }}
{{- end }}
- ✅ Production ready
- ✅ Enterprise-ready
- ✅ Minimal dependencies

## Endpoints
Expand All @@ -71,7 +71,7 @@ docker run -p {{ .ADL.Spec.Server.Port | default 8080 }}:{{ .ADL.Spec.Server.Por
| Skill | Description | Parameters |
|-------|-------------|------------|
{{- range .ADL.Spec.Skills }}
| `{{ .Name }}` | {{ .Description }} | {{- if .Schema.properties }}{{- $props := list }}{{- range $key, $value := .Schema.properties }}{{- $props = append $props $key }}{{- end }}{{ $props | join ", " }}{{- else }}None{{- end }} |
| `{{ .Name }}` | {{ .Description }} | {{- if .Schema.properties }}{{- $props := list }}{{- range $key, $value := .Schema.properties }}{{- $props = append $props $key }}{{- end }} {{ $props | join ", " }} {{- else }} None {{- end }} |
{{- end }}

## Configuration
Expand Down