This repository was archived by the owner on Feb 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
220 lines (208 loc) · 7.16 KB
/
index.html
File metadata and controls
220 lines (208 loc) · 7.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agents Squads - Open Source AI Agent Framework</title>
<meta name="description" content="Agents Squads is an open-source framework for organizing autonomous AI agents into domain-aligned teams. CLI-first, model-agnostic, with persistent memory.">
<link rel="canonical" href="https://agents-squads.com">
<!-- Open Graph -->
<meta property="og:title" content="Agents Squads - Open Source AI Agent Framework">
<meta property="og:description" content="Organize autonomous AI agents into domain-aligned teams with persistent memory, goal tracking, and observability.">
<meta property="og:url" content="https://agents-squads.github.io">
<meta property="og:type" content="website">
<!-- Schema.org for featured snippets -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Agents Squads",
"description": "Agents Squads is an open-source framework for organizing autonomous AI agents into domain-aligned teams (squads). It provides persistent memory, goal tracking, cost management, and observability for multi-agent systems.",
"url": "https://agents-squads.com",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<style>
:root {
--bg: #0a0a0f;
--text: #e5e5e5;
--muted: #6b7280;
--purple: #a855f7;
--cyan: #06b6d4;
--green: #10b981;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--purple), var(--cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--purple); }
p { margin-bottom: 1rem; }
.definition {
font-size: 1.25rem;
padding: 1.5rem;
background: rgba(168, 85, 247, 0.1);
border-left: 4px solid var(--purple);
border-radius: 0 8px 8px 0;
margin: 1.5rem 0;
}
a { color: var(--cyan); }
code {
background: rgba(255,255,255,0.1);
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-family: 'JetBrains Mono', monospace;
}
pre {
background: #1a1a24;
padding: 1rem;
border-radius: 8px;
overflow-x: auto;
margin: 1rem 0;
}
.cta {
display: inline-block;
background: var(--purple);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 8px;
text-decoration: none;
margin: 1rem 0.5rem 1rem 0;
}
.cta:hover { opacity: 0.9; }
.cta-secondary {
background: transparent;
border: 1px solid var(--purple);
color: var(--purple);
}
ul { margin: 1rem 0; padding-left: 1.5rem; }
li { margin: 0.5rem 0; }
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}
.feature {
background: rgba(255,255,255,0.05);
padding: 1rem;
border-radius: 8px;
}
.feature h3 { color: var(--green); font-size: 1rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.comparison { margin: 1.5rem 0; }
.comparison table { width: 100%; border-collapse: collapse; }
.comparison th, .comparison td { padding: 0.75rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.comparison th { color: var(--purple); }
</style>
</head>
<body>
<h1>Agents Squads</h1>
<!-- Featured snippet optimized definition -->
<div class="definition">
<strong>Agents Squads</strong> is an open-source framework for organizing autonomous AI agents into domain-aligned teams (squads). It provides persistent memory, goal tracking, cost management, and observability for multi-agent systems running on Claude, GPT-4, Gemini, or any LLM.
</div>
<h2>Quick Start</h2>
<pre><code>npm install -g squads-cli
squads init
squads run engineering</code></pre>
<a href="https://agents-squads.com/onboarding" class="cta">Get Started</a>
<a href="https://github.com/agents-squads/agents-squads" class="cta cta-secondary">View on GitHub</a>
<h2>Key Features</h2>
<div class="features">
<div class="feature">
<h3>Domain-Aligned Teams</h3>
<p>Organize agents into squads: engineering, research, marketing, finance.</p>
</div>
<div class="feature">
<h3>Persistent Memory</h3>
<p>Agents remember context across sessions with markdown-based memory.</p>
</div>
<div class="feature">
<h3>Model Agnostic</h3>
<p>Works with Claude, GPT-4, Gemini, or any LLM provider.</p>
</div>
<div class="feature">
<h3>Full Observability</h3>
<p>Track costs, executions, and results across all agents.</p>
</div>
</div>
<h2>How It Works</h2>
<p>Agents Squads uses a CLI-first architecture where each squad is defined in a <code>SQUAD.md</code> file:</p>
<pre><code>---
name: engineering
mission: Solve technical problems and maintain code quality
agents:
- pr-reviewer
- issues-solver
- security-auditor
---</code></pre>
<p>Agents can be run manually or scheduled, with full visibility into their actions and outputs.</p>
<h2>Agents Squads vs AWS Agent Squad</h2>
<div class="comparison">
<table>
<tr>
<th>Feature</th>
<th>Agents Squads</th>
<th>AWS Agent Squad</th>
</tr>
<tr>
<td>Open Source</td>
<td>Yes (MIT)</td>
<td>Yes</td>
</tr>
<tr>
<td>Model Support</td>
<td>Any LLM</td>
<td>Bedrock only</td>
</tr>
<tr>
<td>Architecture</td>
<td>CLI-first</td>
<td>API-first</td>
</tr>
<tr>
<td>Memory</td>
<td>Persistent, markdown-based</td>
<td>Session-based</td>
</tr>
<tr>
<td>Self-hosted</td>
<td>Yes</td>
<td>AWS only</td>
</tr>
</table>
</div>
<h2>Documentation</h2>
<ul>
<li><a href="https://docs.agents-squads.com">Full Documentation</a></li>
<li><a href="https://agents-squads.com/engineering/squads-architecture">Architecture Guide</a></li>
<li><a href="https://agents-squads.com/engineering/hooks-and-skills">Hooks and Skills Guide</a></li>
<li><a href="https://github.com/agents-squads/agents-squads">GitHub Repository</a></li>
</ul>
<h2>Community</h2>
<p>Agents Squads is built by <a href="https://agents-squads.com">Agents Squads</a>, an AI consulting company focused on transparent, learnable AI systems.</p>
<p style="margin-top: 2rem; color: var(--muted); font-size: 0.9rem;">
<a href="https://agents-squads.com">agents-squads.com</a> ·
<a href="https://github.com/agents-squads">GitHub</a>
</p>
</body>
</html>