stagent 0.5.0 → 0.6.1
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 +8 -8
- package/dist/cli.js +146 -2
- package/docs/.coverage-gaps.json +21 -0
- package/docs/.last-generated +1 -1
- package/docs/features/agent-intelligence.md +36 -14
- package/docs/features/chat.md +33 -56
- package/docs/features/cost-usage.md +14 -10
- package/docs/features/dashboard-kanban.md +30 -13
- package/docs/features/delivery-channels.md +198 -0
- package/docs/features/design-system.md +10 -10
- package/docs/features/documents.md +8 -8
- package/docs/features/home-workspace.md +20 -15
- package/docs/features/inbox-notifications.md +22 -10
- package/docs/features/keyboard-navigation.md +11 -11
- package/docs/features/monitoring.md +1 -1
- package/docs/features/playbook.md +30 -32
- package/docs/features/profiles.md +33 -11
- package/docs/features/projects.md +2 -2
- package/docs/features/provider-runtimes.md +58 -14
- package/docs/features/schedules.md +70 -40
- package/docs/features/settings.md +74 -46
- package/docs/features/shared-components.md +7 -15
- package/docs/features/tool-permissions.md +9 -9
- package/docs/features/workflows.md +32 -21
- package/docs/getting-started.md +33 -9
- package/docs/index.md +25 -16
- package/docs/journeys/developer.md +124 -207
- package/docs/journeys/personal-use.md +70 -79
- package/docs/journeys/power-user.md +107 -151
- package/docs/journeys/work-use.md +81 -113
- package/docs/manifest.json +77 -45
- package/docs/superpowers/plans/2026-03-30-finish-in-progress-features.md +547 -0
- package/docs/use-cases/agency-operator.md +84 -0
- package/docs/use-cases/solo-founder.md +75 -0
- package/docs/why-stagent.md +59 -0
- package/package.json +10 -3
- package/src/app/api/channels/[id]/route.ts +104 -0
- package/src/app/api/channels/[id]/test/route.ts +52 -0
- package/src/app/api/channels/inbound/slack/route.ts +116 -0
- package/src/app/api/channels/inbound/telegram/poll/route.ts +140 -0
- package/src/app/api/channels/inbound/telegram/route.ts +87 -0
- package/src/app/api/channels/route.ts +72 -0
- package/src/app/api/chat/conversations/route.ts +15 -0
- package/src/app/api/chat/entities/search/route.ts +46 -31
- package/src/app/api/data/clear/route.ts +4 -0
- package/src/app/api/data/seed/route.ts +4 -0
- package/src/app/api/documents/route.ts +36 -6
- package/src/app/api/environment/profiles/suggest/route.ts +19 -3
- package/src/app/api/environment/scan/route.ts +8 -1
- package/src/app/api/handoffs/[id]/route.ts +76 -0
- package/src/app/api/handoffs/route.ts +89 -0
- package/src/app/api/memory/route.ts +181 -0
- package/src/app/api/profiles/[id]/route.ts +16 -1
- package/src/app/api/profiles/[id]/test/route.ts +4 -0
- package/src/app/api/profiles/[id]/test-results/route.ts +22 -0
- package/src/app/api/profiles/[id]/test-single/route.ts +64 -0
- package/src/app/api/profiles/assist/route.ts +35 -0
- package/src/app/api/profiles/import-repo/apply-updates/route.ts +123 -0
- package/src/app/api/profiles/import-repo/check-updates/route.ts +163 -0
- package/src/app/api/profiles/import-repo/confirm/route.ts +118 -0
- package/src/app/api/profiles/import-repo/preview/route.ts +107 -0
- package/src/app/api/profiles/import-repo/route.ts +29 -0
- package/src/app/api/profiles/import-repo/scan/route.ts +25 -0
- package/src/app/api/profiles/route.ts +73 -22
- package/src/app/api/runtimes/ollama/route.ts +86 -0
- package/src/app/api/runtimes/suggest/route.ts +29 -0
- package/src/app/api/schedules/[id]/heartbeat-history/route.ts +77 -0
- package/src/app/api/schedules/[id]/route.ts +41 -3
- package/src/app/api/schedules/parse/route.ts +66 -0
- package/src/app/api/schedules/route.ts +71 -12
- package/src/app/api/settings/author-default/route.ts +7 -0
- package/src/app/api/settings/learning/route.ts +41 -0
- package/src/app/api/settings/ollama/route.ts +34 -0
- package/src/app/api/settings/providers/route.ts +57 -0
- package/src/app/api/settings/routing/route.ts +24 -0
- package/src/app/api/settings/web-search/route.ts +28 -0
- package/src/app/api/tasks/[id]/execute/route.ts +13 -1
- package/src/app/api/tasks/[id]/respond/route.ts +23 -1
- package/src/app/documents/page.tsx +3 -0
- package/src/app/environment/page.tsx +8 -1
- package/src/app/settings/page.tsx +10 -4
- package/src/app/workflows/[id]/edit/page.tsx +2 -0
- package/src/app/workflows/new/page.tsx +2 -0
- package/src/components/chat/chat-command-popover.tsx +22 -19
- package/src/components/chat/chat-input.tsx +5 -0
- package/src/components/chat/chat-model-selector.tsx +42 -1
- package/src/components/chat/chat-shell.tsx +2 -0
- package/src/components/dashboard/welcome-landing.tsx +9 -9
- package/src/components/environment/artifact-card.tsx +27 -1
- package/src/components/environment/environment-dashboard.tsx +50 -2
- package/src/components/environment/environment-summary-card.tsx +5 -2
- package/src/components/environment/suggested-profiles.tsx +117 -52
- package/src/components/handoffs/handoff-approval-card.tsx +159 -0
- package/src/components/memory/memory-browser.tsx +315 -0
- package/src/components/profiles/learned-context-panel.tsx +4 -4
- package/src/components/profiles/profile-assist-panel.tsx +512 -0
- package/src/components/profiles/profile-browser.tsx +109 -8
- package/src/components/profiles/profile-card.tsx +29 -1
- package/src/components/profiles/profile-detail-view.tsx +200 -28
- package/src/components/profiles/profile-form-view.tsx +220 -82
- package/src/components/profiles/repo-import-wizard.tsx +648 -0
- package/src/components/profiles/smoke-test-editor.tsx +106 -0
- package/src/components/schedules/schedule-create-sheet.tsx +9 -1
- package/src/components/schedules/schedule-form.tsx +348 -9
- package/src/components/schedules/schedule-list.tsx +15 -2
- package/src/components/settings/auth-method-selector.tsx +7 -1
- package/src/components/settings/budget-guardrails-section.tsx +111 -48
- package/src/components/settings/channels-section.tsx +526 -0
- package/src/components/settings/chat-settings-section.tsx +27 -1
- package/src/components/settings/data-management-section.tsx +8 -6
- package/src/components/settings/learning-context-section.tsx +124 -0
- package/src/components/settings/ollama-section.tsx +270 -0
- package/src/components/settings/providers-runtimes-section.tsx +499 -0
- package/src/components/settings/web-search-section.tsx +101 -0
- package/src/components/shared/tag-input.tsx +156 -0
- package/src/components/tasks/kanban-board.tsx +32 -0
- package/src/components/tasks/kanban-column.tsx +4 -2
- package/src/components/tasks/task-card.tsx +1 -0
- package/src/components/tasks/task-chip-bar.tsx +6 -1
- package/src/components/tasks/task-create-panel.tsx +55 -5
- package/src/components/workflows/workflow-form-view.tsx +38 -3
- package/src/hooks/use-chat-autocomplete.ts +24 -26
- package/src/hooks/use-project-skills.ts +66 -0
- package/src/hooks/use-tag-suggestions.ts +31 -0
- package/src/instrumentation.ts +4 -1
- package/src/lib/agents/__tests__/claude-agent.test.ts +3 -0
- package/src/lib/agents/__tests__/learned-context.test.ts +10 -0
- package/src/lib/agents/agentic-loop.ts +235 -0
- package/src/lib/agents/browser-mcp.ts +59 -4
- package/src/lib/agents/claude-agent.ts +27 -200
- package/src/lib/agents/handoff/bus.ts +164 -0
- package/src/lib/agents/handoff/governance.ts +47 -0
- package/src/lib/agents/handoff/types.ts +16 -0
- package/src/lib/agents/learned-context.ts +27 -7
- package/src/lib/agents/memory/decay.ts +61 -0
- package/src/lib/agents/memory/extractor.ts +181 -0
- package/src/lib/agents/memory/retrieval.ts +96 -0
- package/src/lib/agents/memory/types.ts +6 -0
- package/src/lib/agents/profiles/__tests__/project-profiles.test.ts +119 -0
- package/src/lib/agents/profiles/__tests__/registry.test.ts +11 -3
- package/src/lib/agents/profiles/builtins/code-reviewer/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/content-creator/SKILL.md +19 -0
- package/src/lib/agents/profiles/builtins/content-creator/profile.yaml +27 -0
- package/src/lib/agents/profiles/builtins/customer-support-agent/SKILL.md +19 -0
- package/src/lib/agents/profiles/builtins/customer-support-agent/profile.yaml +26 -0
- package/src/lib/agents/profiles/builtins/data-analyst/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/devops-engineer/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/document-writer/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/financial-analyst/SKILL.md +19 -0
- package/src/lib/agents/profiles/builtins/financial-analyst/profile.yaml +24 -0
- package/src/lib/agents/profiles/builtins/general/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/health-fitness-coach/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/learning-coach/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/marketing-strategist/SKILL.md +19 -0
- package/src/lib/agents/profiles/builtins/marketing-strategist/profile.yaml +27 -0
- package/src/lib/agents/profiles/builtins/operations-coordinator/SKILL.md +19 -0
- package/src/lib/agents/profiles/builtins/operations-coordinator/profile.yaml +26 -0
- package/src/lib/agents/profiles/builtins/project-manager/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/researcher/SKILL.md +1 -0
- package/src/lib/agents/profiles/builtins/researcher/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/sales-researcher/SKILL.md +19 -0
- package/src/lib/agents/profiles/builtins/sales-researcher/profile.yaml +26 -0
- package/src/lib/agents/profiles/builtins/shopping-assistant/SKILL.md +1 -0
- package/src/lib/agents/profiles/builtins/shopping-assistant/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/sweep/profile.yaml +1 -1
- package/src/lib/agents/profiles/builtins/technical-writer/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/travel-planner/SKILL.md +2 -0
- package/src/lib/agents/profiles/builtins/travel-planner/profile.yaml +2 -2
- package/src/lib/agents/profiles/builtins/wealth-manager/SKILL.md +2 -0
- package/src/lib/agents/profiles/builtins/wealth-manager/profile.yaml +2 -2
- package/src/lib/agents/profiles/project-profiles.ts +193 -0
- package/src/lib/agents/profiles/registry.ts +130 -6
- package/src/lib/agents/profiles/types.ts +28 -0
- package/src/lib/agents/router.ts +174 -2
- package/src/lib/agents/runtime/__tests__/catalog.test.ts +15 -4
- package/src/lib/agents/runtime/anthropic-direct.ts +644 -0
- package/src/lib/agents/runtime/catalog.ts +57 -2
- package/src/lib/agents/runtime/claude.ts +205 -1
- package/src/lib/agents/runtime/index.ts +22 -0
- package/src/lib/agents/runtime/ollama-adapter.ts +409 -0
- package/src/lib/agents/runtime/openai-direct.ts +514 -0
- package/src/lib/agents/runtime/profile-assist-types.ts +30 -0
- package/src/lib/agents/runtime/types.ts +2 -0
- package/src/lib/agents/tool-permissions.ts +203 -0
- package/src/lib/channels/gateway.ts +321 -0
- package/src/lib/channels/poller.ts +268 -0
- package/src/lib/channels/registry.ts +90 -0
- package/src/lib/channels/slack-adapter.ts +188 -0
- package/src/lib/channels/telegram-adapter.ts +218 -0
- package/src/lib/channels/types.ts +75 -0
- package/src/lib/channels/webhook-adapter.ts +74 -0
- package/src/lib/chat/context-builder.ts +22 -2
- package/src/lib/chat/engine.ts +95 -13
- package/src/lib/chat/ollama-engine.ts +198 -0
- package/src/lib/chat/stagent-tools.ts +106 -20
- package/src/lib/chat/tool-catalog.ts +24 -0
- package/src/lib/chat/tool-registry.ts +90 -0
- package/src/lib/chat/tools/chat-history-tools.ts +4 -4
- package/src/lib/chat/tools/document-tools.ts +7 -7
- package/src/lib/chat/tools/handoff-tools.ts +70 -0
- package/src/lib/chat/tools/notification-tools.ts +4 -4
- package/src/lib/chat/tools/profile-tools.ts +3 -3
- package/src/lib/chat/tools/project-tools.ts +3 -3
- package/src/lib/chat/tools/schedule-tools.ts +29 -13
- package/src/lib/chat/tools/settings-tools.ts +2 -2
- package/src/lib/chat/tools/task-tools.ts +66 -11
- package/src/lib/chat/tools/usage-tools.ts +2 -2
- package/src/lib/chat/tools/workflow-tools.ts +8 -8
- package/src/lib/chat/types.ts +11 -5
- package/src/lib/constants/known-tools.ts +19 -0
- package/src/lib/constants/prose-styles.ts +1 -1
- package/src/lib/constants/settings.ts +7 -0
- package/src/lib/data/channel-bindings.ts +85 -0
- package/src/lib/data/clear.ts +22 -0
- package/src/lib/data/profile-test-results.ts +48 -0
- package/src/lib/data/seed-data/conversations.ts +196 -0
- package/src/lib/data/seed-data/learned-context.ts +99 -0
- package/src/lib/data/seed-data/notifications.ts +54 -1
- package/src/lib/data/seed-data/profile-test-results.ts +96 -0
- package/src/lib/data/seed-data/repo-imports.ts +51 -0
- package/src/lib/data/seed-data/views.ts +60 -0
- package/src/lib/data/seed.ts +51 -0
- package/src/lib/db/bootstrap.ts +162 -0
- package/src/lib/db/migrations/0013_add_repo_imports.sql +15 -0
- package/src/lib/db/migrations/0014_add_linked_profile_id.sql +3 -0
- package/src/lib/db/migrations/0015_add_channel_bindings.sql +23 -0
- package/src/lib/db/schema.ts +190 -1
- package/src/lib/environment/__tests__/auto-scan.test.ts +86 -0
- package/src/lib/environment/__tests__/profile-linker.test.ts +187 -0
- package/src/lib/environment/auto-scan.ts +48 -0
- package/src/lib/environment/data.ts +25 -0
- package/src/lib/environment/profile-generator.ts +40 -10
- package/src/lib/environment/profile-linker.ts +143 -0
- package/src/lib/environment/profile-rules.ts +96 -0
- package/src/lib/import/dedup.ts +149 -0
- package/src/lib/import/format-adapter.ts +631 -0
- package/src/lib/import/github-api.ts +219 -0
- package/src/lib/import/repo-scanner.ts +251 -0
- package/src/lib/schedules/__tests__/nlp-parser.test.ts +330 -0
- package/src/lib/schedules/active-hours.ts +120 -0
- package/src/lib/schedules/heartbeat-parser.ts +224 -0
- package/src/lib/schedules/heartbeat-prompt.ts +153 -0
- package/src/lib/schedules/nlp-parser.ts +357 -0
- package/src/lib/schedules/scheduler.ts +218 -3
- package/src/lib/settings/__tests__/budget-guardrails.test.ts +39 -1
- package/src/lib/settings/helpers.ts +6 -0
- package/src/lib/settings/routing.ts +24 -0
- package/src/lib/settings/runtime-setup.ts +28 -1
- package/src/lib/usage/ledger.ts +2 -1
- package/src/lib/validators/__tests__/settings.test.ts +9 -0
- package/src/lib/validators/profile.ts +39 -0
- package/src/lib/workflows/blueprints/builtins/business-daily-briefing.yaml +102 -0
- package/src/lib/workflows/blueprints/builtins/content-marketing-pipeline.yaml +90 -0
- package/src/lib/workflows/blueprints/builtins/customer-support-triage.yaml +107 -0
- package/src/lib/workflows/blueprints/builtins/financial-reporting.yaml +104 -0
- package/src/lib/workflows/blueprints/builtins/lead-research-pipeline.yaml +82 -0
|
@@ -3,15 +3,15 @@ title: "Personal Use Guide"
|
|
|
3
3
|
category: "user-journey"
|
|
4
4
|
persona: "personal"
|
|
5
5
|
difficulty: "beginner"
|
|
6
|
-
estimatedTime: "
|
|
7
|
-
sections: ["home-workspace", "dashboard-kanban", "projects", "chat", "
|
|
8
|
-
tags: ["beginner", "solo", "tasks", "kanban", "chat", "
|
|
9
|
-
lastUpdated: "2026-03-
|
|
6
|
+
estimatedTime: "30 minutes"
|
|
7
|
+
sections: ["home-workspace", "dashboard-kanban", "projects", "chat", "schedules", "user-guide"]
|
|
8
|
+
tags: ["beginner", "solo", "tasks", "kanban", "chat", "schedules", "delivery-channels"]
|
|
9
|
+
lastUpdated: "2026-03-31"
|
|
10
10
|
---
|
|
11
11
|
|
|
12
12
|
# Personal Use Guide
|
|
13
13
|
|
|
14
|
-
Meet Alex, a solo
|
|
14
|
+
Meet Alex, a solo founder who just discovered Stagent. Alex has a side project -- a personal portfolio website -- that needs planning and execution help, but has never used an AI business operating system before. Over the next 30 minutes, Alex will explore the platform, chat with AI, create a project, manage tasks on a kanban board, set up a heartbeat schedule, and discover delivery channels for Telegram notifications. By the end, Alex will have a fully organized project with proactive AI monitoring.
|
|
15
15
|
|
|
16
16
|
## Prerequisites
|
|
17
17
|
|
|
@@ -23,33 +23,32 @@ Meet Alex, a solo developer who just discovered Stagent. Alex has a side project
|
|
|
23
23
|
|
|
24
24
|
### Step 1: Explore the Home Page
|
|
25
25
|
|
|
26
|
-
Alex opens Stagent for the first time. The home page greets with a sidebar on the left showing every section of the workspace -- Work, Manage, and Configure groups -- and the main content area displays an activity overview with
|
|
26
|
+
Alex opens Stagent for the first time. The home page greets with a sidebar on the left showing every section of the workspace -- Work, Manage, Learn, and Configure groups -- and the main content area displays an activity overview with stat cards and a needs attention section.
|
|
27
27
|
|
|
28
28
|

|
|
29
29
|
|
|
30
30
|
1. Open Stagent at `http://localhost:3000` to land on the home page
|
|
31
|
-
2. Scan the **sidebar** on the left -- notice the
|
|
32
|
-
3. Review the **
|
|
33
|
-
4. Note the **
|
|
31
|
+
2. Scan the **sidebar** on the left -- notice the four groups: Work (Dashboard, Inbox, Chat, Projects, Workflows, Documents), Manage (Monitor, Profiles, Schedules, Cost & Usage), Learn (AI Native Book, User Guide), and Configure (Environment, Settings)
|
|
32
|
+
3. Review the **stat cards** showing active tasks, completed today, awaiting review, active projects, and active workflows
|
|
33
|
+
4. Note the **needs attention** section that will surface items requiring your input as agents run
|
|
34
34
|
|
|
35
35
|
> **Tip:** The sidebar stays visible across every page. It is your primary way to move between sections. You can collapse it for more screen space by clicking the toggle at the top.
|
|
36
36
|
|
|
37
37
|
### Step 2: Discover Below-the-Fold Content
|
|
38
38
|
|
|
39
|
-
Alex scrolls down the home page and discovers additional context --
|
|
39
|
+
Alex scrolls down the home page and discovers additional context -- recent projects, chart visualizations, and workspace signals.
|
|
40
40
|
|
|
41
41
|

|
|
42
42
|
|
|
43
|
-
1. Scroll down past the
|
|
44
|
-
2. Review the **
|
|
45
|
-
3.
|
|
46
|
-
4. Use these metrics as a daily check-in point to understand what needs attention
|
|
43
|
+
1. Scroll down past the stat cards on the home page
|
|
44
|
+
2. Review the **recent projects** section and any chart visualizations
|
|
45
|
+
3. Use these metrics as a daily check-in point to understand what needs attention
|
|
47
46
|
|
|
48
47
|
> **Tip:** The home page is designed as a morning dashboard. Start each session here to get an instant summary of your workspace before diving into specific tasks.
|
|
49
48
|
|
|
50
49
|
### Step 3: Navigate with the Command Palette
|
|
51
50
|
|
|
52
|
-
Before diving deeper, Alex learns the fastest way to get around Stagent -- the Command Palette.
|
|
51
|
+
Before diving deeper, Alex learns the fastest way to get around Stagent -- the Command Palette.
|
|
53
52
|
|
|
54
53
|

|
|
55
54
|
|
|
@@ -58,152 +57,144 @@ Before diving deeper, Alex learns the fastest way to get around Stagent -- the C
|
|
|
58
57
|
3. Use **arrow keys** to highlight a result, then press **Enter** to navigate there
|
|
59
58
|
4. Press **Escape** to dismiss the palette without selecting anything
|
|
60
59
|
|
|
61
|
-
> **Tip:** The Command Palette searches across pages, projects, tasks, and workflows.
|
|
60
|
+
> **Tip:** The Command Palette searches across pages, projects, tasks, and workflows. Memorize Cmd+K -- you will use it constantly.
|
|
62
61
|
|
|
63
62
|
### Step 4: Ask AI a Quick Question via Chat
|
|
64
63
|
|
|
65
|
-
Before setting up a formal project, Alex tries the Chat feature to brainstorm ideas.
|
|
64
|
+
Before setting up a formal project, Alex tries the Chat feature to brainstorm ideas.
|
|
66
65
|
|
|
67
66
|

|
|
68
67
|
|
|
69
68
|
1. Click **Chat** in the sidebar under the **Work** group
|
|
70
|
-
2. Notice the **
|
|
71
|
-
3. Browse the **
|
|
69
|
+
2. Notice the **Tool Catalog** with a welcoming hero heading and suggested prompt categories (Explore, Create, Debug, Automate)
|
|
70
|
+
3. Browse the **Smart Picks** row for personalized suggestions
|
|
72
71
|
4. Type a question like "What pages should a developer portfolio website include?" and press Enter
|
|
73
|
-
5. Review the AI response
|
|
72
|
+
5. Review the AI response
|
|
74
73
|
|
|
75
74
|
> **Tip:** Chat is perfect for quick brainstorming sessions. You do not need to create a project first -- just ask a question. The conversation history stays in the sidebar so you can return to it later.
|
|
76
75
|
|
|
77
76
|
### Step 5: Create a New Project
|
|
78
77
|
|
|
79
|
-
Inspired by the chat brainstorm, Alex decides to formalize the portfolio idea into a project.
|
|
78
|
+
Inspired by the chat brainstorm, Alex decides to formalize the portfolio idea into a project.
|
|
80
79
|
|
|
81
80
|

|
|
82
81
|
|
|
83
82
|
1. Click **Projects** in the sidebar under the **Work** group
|
|
84
|
-
2.
|
|
85
|
-
3.
|
|
86
|
-
4.
|
|
87
|
-
5.
|
|
88
|
-
6. Click **Create** to save the project
|
|
83
|
+
2. Click the **Create Project** button in the top-right corner
|
|
84
|
+
3. Enter a **Project Name** such as "Portfolio Website"
|
|
85
|
+
4. Add a **Description**: "Personal developer portfolio with project showcase, blog, and contact form"
|
|
86
|
+
5. Click **Create** to save the project
|
|
89
87
|
|
|
90
|
-
> **Tip:**
|
|
88
|
+
> **Tip:** Give your project a clear, descriptive name -- it will appear throughout the workspace whenever you filter tasks or assign work.
|
|
91
89
|
|
|
92
90
|
### Step 6: Open the Dashboard Kanban Board
|
|
93
91
|
|
|
94
|
-
With a project created, Alex heads to the Dashboard to start organizing work.
|
|
92
|
+
With a project created, Alex heads to the Dashboard to start organizing work.
|
|
95
93
|
|
|
96
94
|

|
|
97
95
|
|
|
98
96
|
1. Click **Dashboard** in the sidebar under the **Work** group
|
|
99
97
|
2. Review the kanban board layout with columns like **Planned**, **In Progress**, **Completed**, and others
|
|
100
98
|
3. Notice the **view controls** in the header area -- the board view is selected by default
|
|
101
|
-
4. If you have existing tasks, observe how they are sorted into columns by their current status
|
|
102
99
|
|
|
103
|
-
> **Tip:** The kanban board gives you a visual pipeline of your work. Each column represents a stage in the task lifecycle.
|
|
100
|
+
> **Tip:** The kanban board gives you a visual pipeline of your work. Each column represents a stage in the task lifecycle.
|
|
104
101
|
|
|
105
102
|
### Step 7: Switch to Table View
|
|
106
103
|
|
|
107
|
-
Alex discovers that the Dashboard supports multiple view modes.
|
|
104
|
+
Alex discovers that the Dashboard supports multiple view modes.
|
|
108
105
|
|
|
109
106
|

|
|
110
107
|
|
|
111
108
|
1. Click the **Table** view toggle in the Dashboard header to switch from kanban to table layout
|
|
112
109
|
2. Review the columns: title, status, priority, project, and other metadata
|
|
113
110
|
3. Click any **column header** to sort tasks by that field
|
|
114
|
-
4. Experiment with the **density controls** if available -- compact mode fits more rows on screen
|
|
115
111
|
|
|
116
|
-
> **Tip:** Table view shines when you have many tasks and need to quickly sort
|
|
112
|
+
> **Tip:** Table view shines when you have many tasks and need to quickly sort or compare them. Both views show the same data.
|
|
117
113
|
|
|
118
114
|
### Step 8: Create a New Task
|
|
119
115
|
|
|
120
|
-
Alex
|
|
116
|
+
Alex creates the first task for the portfolio project.
|
|
121
117
|
|
|
122
118
|

|
|
123
119
|
|
|
124
120
|
1. Click the **Create Task** button in the Dashboard header
|
|
125
121
|
2. Enter a **Title**: "Design hero section with intro and call-to-action"
|
|
126
|
-
3. Write a **Description** with
|
|
127
|
-
4. Assign the task to the **Portfolio Website** project
|
|
122
|
+
3. Write a **Description** with detail about requirements
|
|
123
|
+
4. Assign the task to the **Portfolio Website** project
|
|
128
124
|
5. Set **Priority** to High and leave **Status** as Planned
|
|
129
125
|
6. Click **Create** to add the task to the board
|
|
130
126
|
|
|
131
|
-
> **Tip:** Write task descriptions as if you are briefing a colleague. The more specific you are
|
|
127
|
+
> **Tip:** Write task descriptions as if you are briefing a colleague. The more specific you are, the better the AI agent results will be.
|
|
132
128
|
|
|
133
129
|
### Step 9: Quick-Edit a Task from the Kanban Board
|
|
134
130
|
|
|
135
|
-
|
|
131
|
+
Alex uses the quick-edit dialog for a fast priority change.
|
|
136
132
|
|
|
137
133
|

|
|
138
134
|
|
|
139
135
|
1. Hover over a task card on the kanban board
|
|
140
136
|
2. Click the **edit icon** (pencil) that appears on the card
|
|
141
|
-
3.
|
|
142
|
-
4.
|
|
143
|
-
5. Click **Save** to apply the changes -- the card updates immediately on the board
|
|
144
|
-
|
|
145
|
-
> **Tip:** Quick-edit is designed for fast adjustments without losing your place on the board. For deeper changes -- like reviewing agent logs or adding documents -- use the full detail view instead (see next step).
|
|
137
|
+
3. Change the **Priority** or update the title and description
|
|
138
|
+
4. Click **Save** to apply the changes
|
|
146
139
|
|
|
147
140
|
### Step 10: View Task Details
|
|
148
141
|
|
|
149
|
-
Alex clicks on a task card to open the full detail sheet.
|
|
142
|
+
Alex clicks on a task card to open the full detail sheet.
|
|
150
143
|
|
|
151
144
|

|
|
152
145
|
|
|
153
146
|
1. Click on any **task card** in the kanban board (not the edit icon -- the card itself)
|
|
154
147
|
2. The **detail sheet** slides in from the right side of the screen
|
|
155
148
|
3. Review the full **Description**, **Priority**, **Status**, **Project** assignment, and timestamps
|
|
156
|
-
4.
|
|
157
|
-
5. Press **Escape** or click outside the sheet to close it and return to the board
|
|
158
|
-
|
|
159
|
-
> **Tip:** The detail sheet is your go-to view for reviewing task context before execution. It keeps the board visible in the background, so you can quickly close the sheet and move to another card without any page navigation.
|
|
149
|
+
4. Press **Escape** or click outside the sheet to close it
|
|
160
150
|
|
|
161
|
-
### Step 11:
|
|
151
|
+
### Step 11: Set Up a Heartbeat Schedule
|
|
162
152
|
|
|
163
|
-
|
|
153
|
+
Alex wants Stagent to proactively check on the portfolio project every morning. A heartbeat schedule evaluates conditions before deciding whether to act -- it only creates tasks when something meaningful needs attention.
|
|
164
154
|
|
|
165
|
-

|
|
166
156
|
|
|
167
|
-
1.
|
|
168
|
-
2.
|
|
169
|
-
3.
|
|
170
|
-
4.
|
|
171
|
-
5.
|
|
157
|
+
1. Click **Schedules** in the sidebar under the **Manage** group
|
|
158
|
+
2. Click **Create Schedule** and select type **Heartbeat**
|
|
159
|
+
3. Enter a **Name**: "Morning Portfolio Check"
|
|
160
|
+
4. Set the interval using natural language: "weekdays at 8am"
|
|
161
|
+
5. Add checklist items: "Are there any stale tasks older than 3 days?" and "Are there completed tasks that need review?"
|
|
162
|
+
6. Assign the Portfolio Website project and click **Create**
|
|
172
163
|
|
|
173
|
-
> **Tip:**
|
|
164
|
+
> **Tip:** Heartbeat schedules are smarter than clock-driven ones -- they suppress no-op runs. If your portfolio project has no stale tasks, the heartbeat stays quiet and costs nothing.
|
|
174
165
|
|
|
175
|
-
### Step 12:
|
|
166
|
+
### Step 12: Connect Telegram for Notifications
|
|
176
167
|
|
|
177
|
-
Alex
|
|
168
|
+
Alex wants to receive schedule results on the go. Setting up a Telegram delivery channel takes less than two minutes.
|
|
178
169
|
|
|
179
|
-

|
|
180
171
|
|
|
181
|
-
1.
|
|
182
|
-
2.
|
|
183
|
-
3. Click
|
|
184
|
-
4.
|
|
172
|
+
1. Open **Settings** from the sidebar under **Configure**
|
|
173
|
+
2. Scroll to the **Delivery Channels** section
|
|
174
|
+
3. Click **+ Add Channel** and select **Telegram**
|
|
175
|
+
4. Create a Telegram bot via @BotFather (send `/newbot`), copy the bot token
|
|
176
|
+
5. Get your Chat ID by messaging the bot and visiting the getUpdates URL
|
|
177
|
+
6. Enter the Bot Token and Chat ID, then click **Create Channel**
|
|
178
|
+
7. Click **Test** to verify -- you should see a test message in Telegram
|
|
179
|
+
8. Toggle **Chat** on to enable bidirectional mode -- now you can message Stagent from Telegram
|
|
185
180
|
|
|
186
|
-
> **Tip:**
|
|
181
|
+
> **Tip:** With Chat mode enabled, you can ask Stagent questions directly from Telegram. "What's the status of my portfolio project?" works just like the web chat.
|
|
187
182
|
|
|
188
|
-
### Step 13:
|
|
183
|
+
### Step 13: Browse the User Guide
|
|
189
184
|
|
|
190
|
-
|
|
185
|
+
Alex discovers the built-in documentation hub.
|
|
191
186
|
|
|
192
|
-

|
|
193
188
|
|
|
194
|
-
1. Click **
|
|
195
|
-
2.
|
|
196
|
-
3. Check the **
|
|
197
|
-
4. Use
|
|
198
|
-
|
|
199
|
-
> **Tip:** Bookmarking the home page as your browser start page for Stagent is a good habit. It gives you an instant summary every time you open the app, so you always know where you left off.
|
|
189
|
+
1. Click **User Guide** in the sidebar under the **Learn** group
|
|
190
|
+
2. Browse the **feature adoption tracker** to see which areas you have explored
|
|
191
|
+
3. Check the **guided journeys** for your current skill level
|
|
192
|
+
4. Use the feature grid to discover areas you have not tried yet
|
|
200
193
|
|
|
201
194
|
### Step 14: What's Next
|
|
202
195
|
|
|
203
|
-
Alex now has a solid foundation: a project, organized tasks on a kanban board, and
|
|
196
|
+
Alex now has a solid foundation: a project, organized tasks on a kanban board, a heartbeat schedule for proactive monitoring, and Telegram notifications for staying connected on the go. Here is where to go from here:
|
|
204
197
|
|
|
205
|
-
- **[Work Use Guide](./work-use.md)** -- Scale up to team projects with documents, workflows, and
|
|
206
|
-
- **[Power User Guide](./power-user.md)** -- Unlock advanced features like
|
|
198
|
+
- **[Work Use Guide](./work-use.md)** -- Scale up to team projects with documents, workflows, and multi-channel notifications
|
|
199
|
+
- **[Power User Guide](./power-user.md)** -- Unlock advanced features like Ollama local models, episodic memory, and NLP scheduling
|
|
207
200
|
- **[Developer Guide](./developer.md)** -- Configure settings, authentication, environment, and CLI tooling
|
|
208
|
-
|
|
209
|
-
The Work Use Guide is the natural next step. It builds on everything covered here and introduces collaboration-oriented features like document management, workflow automation, and cost tracking -- all the tools Alex will need as the portfolio project grows beyond a solo effort.
|