Reference agents, tools, and patterns for building enterprise-grade agentic systems on top of SprintLoop.
- Router agents
- Worker agents
- Supervisor agents
- Evaluator agents
- Tool-enabled agents
{
"id": "support-triage-agent",
"description": "Routes support messages to specialized agents.",
"inputs": { "message": "string", "channel": "string" },
"outputs": { "intent": "string", "route": "string" },
"tools": ["kb_search", "ticket_system"],
"governance": { "max_tokens": 1024 }
}
Related Repositories
sprintloop-enterprise-os
sprintloop-workflows
sprintloop-sdk-js
sprintloop-sdk-python
---
# ✅ **2. sprintloop-sdk-js**
### **DESCRIPTION**
JavaScript/TypeScript SDK for integrating with SprintLoop Enterprise OS, agents, and workflows.
### **TOPICS**
javascript
typescript
sdk
ai-sdk
sprintloop
agentic-ai
llm
developer-tools
api-client
workflow-automation
enterprise-ai
### **README.md**
```markdown
# SprintLoop JS SDK
Official JavaScript/TypeScript SDK for integrating apps, agents, and workflows with the **SprintLoop Enterprise OS**.
## Install
```bash
npm install @sprintloop/sdk
Quickstart
import { SprintLoopClient } from "@sprintloop/sdk";
const client = new SprintLoopClient({
apiKey: "YOUR_KEY",
baseUrl: "https://api.sprintloop.ai"
});
const result = await client.agents.invoke({
agentId: "support-triage-agent",
input: { message: "Hello?", channel: "web" }
});
console.log(result.output);
Related Repositories
sprintloop-sdk-python
sprintloop-enterprise-os
---
# ✅ **3. sprintloop-sdk-python**
### **DESCRIPTION**
Python SDK for building agents, workflows, and integrations on the SprintLoop Enterprise OS.
### **TOPICS**
python
sdk
ai-sdk
sprintloop
agentic-ai
llm
developer-tools
api-client
enterprise-ai
workflow-automation
### **README.md**
```markdown
# SprintLoop Python SDK
Official Python SDK for integrating backend systems, pipelines, and agents with the **SprintLoop Enterprise OS**.
## Install
```bash
pip install sprintloop
Quickstart
from sprintloop import SprintLoopClient
client = SprintLoopClient(api_key="YOUR_KEY")
result = client.agents.invoke(
agent_id="claims-intake-agent",
input={"utterance": "Check my claim", "channel": "voice"}
)
print(result["output"])
Related Repositories
sprintloop-sdk-js
sprintloop-enterprise-os
---
# ✅ **4. sprintloop-workflows**
### **DESCRIPTION**
Reusable agentic workflows and multi-stage orchestration pipelines for the SprintLoop Enterprise OS.
### **TOPICS**
workflows
pipelines
workflow-automation
ai-orchestration
multi-agent-systems
enterprise-ai
sprintloop
examples
### **README.md**
```markdown
# SprintLoop Workflows
Reusable **agentic workflows** and **multi-stage orchestration patterns** for the SprintLoop Enterprise OS.
## Example Workflow
```yaml
id: triage-and-resolve
steps:
- id: detect_intent
type: agent
agent_id: support-triage-agent
- id: route
type: router
routes:
billing: billing-agent
technical: tech-agent
- id: evaluate
type: agent
agent_id: support-evaluator-agent
Related Repositories
sprintloop-agents
sprintloop-enterprise-os
---
# ✅ **5. sprintloop-docs**
### **DESCRIPTION**
Documentation hub for SprintLoop: architecture, SDK guides, agents, workflows, and governance.
### **TOPICS**
documentation
docs
sprintloop
agentic-ai
enterprise-ai
ai-sdlc
developer-experience
tutorials
guides
### **README.md**
```markdown
# SprintLoop Docs
Documentation for the **SprintLoop Enterprise OS**.
## Sections
- Overview
- Architecture
- SDK guides
- Agent patterns
- Workflow patterns
- Governance
## Structure
/docs
/overview
/architecture
/sdk
/agents
/workflows
/governance
## Related Repositories
- sprintloop-enterprise-os
- sprintloop-sdk-js
- sprintloop-sdk-python
- sprintloop-agents
- sprintloop-workflows