stagent 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -23
- package/package.json +1 -1
- package/public/readme/home-workspace.png +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Stagent
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Govern Your AI Agents. Operate With Oversight.
|
|
4
4
|
|
|
5
5
|
[](https://nextjs.org/) [](https://react.dev/) [](https://www.typescriptlang.org/) [](https://docs.anthropic.com/) [](https://developers.openai.com/codex/app-server) [](LICENSE)
|
|
6
6
|
|
|
@@ -12,27 +12,9 @@ npx stagent
|
|
|
12
12
|
|
|
13
13
|
Open [localhost:3000](http://localhost:3000).
|
|
14
14
|
|
|
15
|
-
<details>
|
|
16
|
-
<summary>Contributor setup (clone + dev server)</summary>
|
|
17
|
-
|
|
18
|
-
```bash
|
|
19
|
-
git clone <repo-url> && cd stagent && npm install
|
|
20
|
-
|
|
21
|
-
# Set up one or both runtime credentials
|
|
22
|
-
cat > .env.local <<'EOF'
|
|
23
|
-
ANTHROPIC_API_KEY=your-anthropic-key
|
|
24
|
-
OPENAI_API_KEY=your-openai-key
|
|
25
|
-
EOF
|
|
26
|
-
|
|
27
|
-
# Start the dev server
|
|
28
|
-
npm run dev
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
</details>
|
|
32
|
-
|
|
33
15
|
**Profiles & Policies** · **Blueprints & Schedules** · **Open Source**
|
|
34
16
|
|
|
35
|
-
<img src="https://
|
|
17
|
+
<img src="https://raw.githubusercontent.com/navam-io/stagent/main/public/readme/home-workspace.png" alt="Stagent home workspace" width="1200" />
|
|
36
18
|
|
|
37
19
|
| Home Workspace | Reusable Profiles | Workflow Blueprints | Governed Execution |
|
|
38
20
|
|:-:|:-:|:-:|:-:|
|
|
@@ -76,7 +58,7 @@ Stagent ships a shared runtime registry that routes tasks, schedules, and workfl
|
|
|
76
58
|
|
|
77
59
|
## Architecture
|
|
78
60
|
|
|
79
|
-
<img src="https://
|
|
61
|
+
<img src="https://raw.githubusercontent.com/navam-io/stagent/main/public/readme/architecture.svg" alt="Stagent architecture diagram" width="900" />
|
|
80
62
|
|
|
81
63
|
**Key design decisions:**
|
|
82
64
|
|
|
@@ -151,7 +133,7 @@ Curated agent profiles across work and personal domains, built as portable Claud
|
|
|
151
133
|
#### Workflow Blueprints
|
|
152
134
|
Pre-configured workflow templates across work and personal domains. Browse blueprints in a gallery with filtering and search, preview steps and required variables, fill in a dynamic form, and create draft workflows with resolved prompts and profile assignments. Create custom blueprints via YAML or import from GitHub URLs. Lineage tracking connects workflows back to their source blueprint.
|
|
153
135
|
|
|
154
|
-
<img src="https://
|
|
136
|
+
<img src="https://raw.githubusercontent.com/navam-io/stagent/main/public/readme/workflow-blueprints.png" alt="Stagent workflow blueprint gallery" width="1200" />
|
|
155
137
|
|
|
156
138
|
### Documents
|
|
157
139
|
|
|
@@ -186,7 +168,7 @@ Provider-normalized metering tracks token and spend activity across tasks, resum
|
|
|
186
168
|
#### Inbox & Human-in-the-Loop
|
|
187
169
|
When an agent needs approval or input, a notification appears in your inbox. Review tool permission requests with "Allow Once" / "Always Allow" / "Deny" buttons, answer agent questions, and see task completion summaries. Supports bulk dismiss and 10s polling.
|
|
188
170
|
|
|
189
|
-
<img src="https://
|
|
171
|
+
<img src="https://raw.githubusercontent.com/navam-io/stagent/main/public/readme/inbox-approvals.png" alt="Stagent inbox approval flow" width="1200" />
|
|
190
172
|
|
|
191
173
|
#### Monitoring
|
|
192
174
|
Real-time agent log streaming via Server-Sent Events. Filter by task or event type, click entries to jump to task details, and auto-pause polling when the tab is hidden (Page Visibility API).
|
|
@@ -343,6 +325,23 @@ All 14 features shipped across three layers:
|
|
|
343
325
|
|
|
344
326
|
## Contributing
|
|
345
327
|
|
|
328
|
+
### Contributor Setup
|
|
329
|
+
|
|
330
|
+
```bash
|
|
331
|
+
git clone <repo-url> && cd stagent && npm install
|
|
332
|
+
|
|
333
|
+
# Set up one or both runtime credentials
|
|
334
|
+
cat > .env.local <<'EOF'
|
|
335
|
+
ANTHROPIC_API_KEY=your-anthropic-key
|
|
336
|
+
OPENAI_API_KEY=your-openai-key
|
|
337
|
+
EOF
|
|
338
|
+
|
|
339
|
+
# Start the dev server
|
|
340
|
+
npm run dev
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
### Pull Requests
|
|
344
|
+
|
|
346
345
|
1. Fork the repository
|
|
347
346
|
2. Create a feature branch (`git checkout -b feature/your-feature`)
|
|
348
347
|
3. Make your changes and add tests
|
package/package.json
CHANGED
|
Binary file
|