Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a834793
action for creating new chat window
robgruen Jul 28, 2026
bd7a37d
can now check branch merge status by saying "did branch x" get merged?
robgruen Jul 28, 2026
5a7bdd3
style: apply prettier formatting and policy fixes
typeagent-bot[bot] Jul 29, 2026
406012d
docs: regenerate README.AUTOGEN.md, command reference, and action bro…
typeagent-bot[bot] Jul 29, 2026
4aeca61
Updated action browser to include agent commands
robgruen Jul 29, 2026
922532f
added heirarchy to commands view
robgruen Jul 29, 2026
006da2b
refactor(coda): reduce chat action branching complexity
Copilot Jul 29, 2026
6ef4d1d
added command <-> action links and updated doc generation
robgruen Jul 29, 2026
31695ec
refactored conversation actions to invoke commandhandlers to do the w…
robgruen Jul 30, 2026
3c01e5c
@describe now uses structured output
robgruen Jul 30, 2026
022ac54
reasoning can now dispatch actions to the host application (shell). …
robgruen Jul 30, 2026
91f4266
added self-help agent
robgruen Jul 30, 2026
f83c77a
promoted message count as a first-class conversation data item
robgruen Jul 30, 2026
9bf3746
clicking on the roadrunner will now show explainer details
robgruen Jul 30, 2026
dcf6bde
Merge branch 'dev/robgruen/dogfooding8' of https://github.com/microso…
robgruen Jul 30, 2026
3998a5f
Merge origin/main into dev/robgruen/dogfooding8
Copilot Jul 30, 2026
bc94028
style: apply prettier formatting and policy fixes
typeagent-bot[bot] Jul 30, 2026
5018562
fix: remove duplicate trademark section in selfhelp README
Copilot Jul 30, 2026
3b08408
docs: regenerate README.AUTOGEN.md, command reference, and action bro…
typeagent-bot[bot] Jul 30, 2026
822105b
Potential fix for pull request finding 'CodeQL / Incomplete string es…
robgruen Jul 30, 2026
e1aab26
fix: reduce build-ts complexity regressions
Copilot Jul 30, 2026
cc8683f
style: apply prettier formatting and policy fixes
typeagent-bot[bot] Jul 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ts/docs/architecture/agents/agentServerConversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ type ConversationInfo = {
name: string;
clientCount: number;
createdAt: string;
messageCount: number; // user requests recorded in the display log
};
```

Expand Down
6 changes: 4 additions & 2 deletions ts/docs/architecture/core/dispatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -734,8 +734,10 @@ The system agent also has sub-agents with LLM-translated action schemas:
"describe the play action"). `executeDescribeAction` forwards to the equivalent `@describe`
command (same convention as `system.config`/`system.history`), which resolves the agent/action
against `getAgentSchemas()` (agentSchemaInfo.ts) and renders a deterministic markdown summary,
optionally polished by a fast LLM call when one is configured (falls back to the deterministic
text on missing/failed model — see `describeCore.ts`).
optionally polished by a fast structured-output LLM call when one is configured — the model
returns a schema-validated JSON object (summary / explanation + example) that is rendered to
markdown deterministically, falling back to the deterministic text on a missing/failed model
(see `describeCore.ts`).
- **`system.config`** — Natural language configuration changes.
- **`system.conversation`** — Natural language management of **agentServer client-connection
conversations** (the named, GUID-keyed sessions described in
Expand Down
103 changes: 82 additions & 21 deletions ts/docs/overview/action-browser.html

Large diffs are not rendered by default.

Loading