Quick Start: Your First Agent

Configure and deploy an AI agent in 15 minutes.


1. Agent Configuration (SDS-040)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
POST /ai-agents/configure
{
  "agentId": "code-reviewer",
  "name": "Code Review Agent",
  "role": "CodeReviewer",
  "baseModel": "GPT-4",
  "promptTemplate": "Review the following code for quality: {{code}}",
  "contextSources": [
    {
      "sourceType": "knowledgeGraph",
      "query": "MATCH (s:Standard) WHERE s.domain = $domain RETURN s",
      "injectionPoint": "{{standards}}"
    }
  ],
  "skills": [
    {
      "skillId": "review-code",
      "description": "Review code for quality issues"
    }
  ]
}

2. Authority Setup (SDS-031)

Assign agent role:

1
2
3
4
5
6
7
8
9
10
agent:
  id: code-reviewer
  role: R-AA  # Automated Agent
  sponsor: R-DS  # Requires human sponsor
  capabilities:
    - recommend_changes
    - flag_issues
  restrictions:
    - cannot_approve_own_recommendations
    - requires_hitl_for_mutations

3. Deploy Agent

1
2
3
4
5
6
7
8
9
# Deploy agent
POST /ai-agents/code-reviewer/deploy

# Invoke agent
POST /ai-agents/code-reviewer/invoke
{
  "code": "function example() { ... }",
  "domain": "typescript"
}

4. Verify Governance

Check agent follows SDS-031 rules:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# View audit log
GET /governance/audit?agentId=code-reviewer

# Response
{
  "events": [
    {
      "type": "agent.invoked",
      "actor": "code-reviewer",
      "sponsor": "R-DS:jane.doe",
      "action": "recommend_changes",
      "timestamp": "2026-01-05T09:00:00Z"
    }
  ]
}

Next Steps

  1. Authority rules: Authority_Rules.md
  2. Full configuration: Agent_Configuration.md
  3. Agent patterns: Patterns/

Last Updated: January 2026