Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
978e2a8
Updated retry backoff timeouts (increased)
robgruen Jul 15, 2026
89f18b3
readiness hardening
robgruen Jul 15, 2026
6768495
icon update
robgruen Jul 15, 2026
6e0585b
Updated message UI
robgruen Jul 16, 2026
d1c6e66
bumped reasoning itmeout
robgruen Jul 16, 2026
cbb431d
fixed a display bug with action name and updated utility agent to cre…
robgruen Jul 16, 2026
3345ab6
handle parallel tool calls
robgruen Jul 16, 2026
0f9489f
added parity assessment.
robgruen Jul 16, 2026
ff95a8b
added camera capability to vscode-shell (hid the buttons since this i…
robgruen Jul 17, 2026
675a09f
secrets redacter added
robgruen Jul 17, 2026
c895057
added secrts scrubbing to egress (telemetry + LLM calls). The latter…
robgruen Jul 17, 2026
9acf74d
Updated context for vscode-shell
robgruen Jul 17, 2026
3b1afdb
Merge remote-tracking branch 'origin' into dev/robgruen/dogfooding5
robgruen Jul 17, 2026
fb575e6
updated pr append workflow to also update command reference (in case …
robgruen Jul 17, 2026
989941e
added action browser to the repo and updated doc-gen to update this d…
robgruen Jul 17, 2026
5cbcf61
style: apply prettier formatting and policy fixes
typeagent-bot[bot] Jul 17, 2026
7deadfa
docs: regenerate README.AUTOGEN.md, command reference, and action bro…
typeagent-bot[bot] Jul 17, 2026
130f2fb
fix: reduce reasoning prompt/tool display complexity for CI ratchet
Copilot Jul 17, 2026
ddde170
Merge remote-tracking branch 'origin/main' into dev/robgruen/dogfooding5
Copilot Jul 17, 2026
c9ef0d2
Fix Windows lint ratchet failure
Copilot Jul 17, 2026
9bcf5d5
docs: regenerate README.AUTOGEN.md, command reference, and action bro…
typeagent-bot[bot] Jul 17, 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
45 changes: 39 additions & 6 deletions .github/workflows/docs-pr-amend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,48 @@ jobs:
since: ${{ steps.base.outputs.since }}
github-token: ${{ github.token }}

# Commit only the regenerated companions back onto the PR branch. The
# action no-ops when nothing changed (e.g. every changed package was
# skipped by the content-hash gate), which is what makes a re-triggered
# run terminate instead of looping. README.md is never touched.
# Regenerate the global command reference. Unlike the per-package
# READMEs above, this is a deterministic transform of the dispatcher +
# agent command descriptors (no LLM, no API keys), so it reuses the
# docs-autogen CLI the composite already built and needs no GitHub
# Models token. writeCommandReference only writes when the content
# changed, so a re-triggered run regenerates nothing and the amend loop
# still terminates. Advisory like the README step: a docs failure here
# must never block the code PR.
- name: Regenerate command reference
continue-on-error: true
working-directory: ts
run: node tools/docsAutogen/bin/docs-autogen.cjs --command-reference

# Regenerate the interactive Action Browser: a self-contained HTML
# catalog (plus its raw JSON) of every agent action, parameter, example
# phrasing, and system command. Like the command reference it is a
# static transform of the bundled agent manifests/schemas/grammar (no
# LLM, no API keys). Its tool is separate from docs-autogen, so build it
# here - tsc -b is incremental, so deps the composite already built are
# no-ops. Advisory: a docs failure must never block the code PR.
- name: Regenerate action browser
continue-on-error: true
working-directory: ts
run: |
pnpm --filter '@typeagent/action-browser...' build
node tools/actionBrowser/dist/cli.js --json

# Commit the regenerated companions, command reference, and action
# browser back onto the PR branch. The commit no-ops when nothing
# changed (e.g. every changed package was skipped by the content-hash
# gate and the generated docs were already current), which is what makes
# a re-triggered run terminate instead of looping. README.md is never
# touched.
- name: Commit regenerated docs
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "docs: regenerate README.AUTOGEN.md for changed packages"
commit_message: "docs: regenerate README.AUTOGEN.md, command reference, and action browser"
commit_user_name: typeagent-bot
commit_user_email: typeagent-bot[bot]@users.noreply.github.com
commit_author: "typeagent-bot <typeagent-bot[bot]@users.noreply.github.com>"
file_pattern: "ts/packages/**/README.AUTOGEN.md"
file_pattern: |
ts/packages/**/README.AUTOGEN.md
ts/docs/overview/command-reference.md
ts/docs/overview/action-browser.html
ts/docs/overview/action-browser.json
6 changes: 6 additions & 0 deletions ts/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ packages/shell/playwright-report/*
# Generated cache files
examples/websiteAliases/cache

# Generated Action Browser (committed HTML + JSON catalog, regenerated and
# committed per-PR by docs-pr-amend.yml; not hand-edited, so exclude from
# formatting to avoid churn with the generator's own output).
docs/overview/action-browser.html
docs/overview/action-browser.json

# VS Studio Files
.vs/**

8 changes: 5 additions & 3 deletions ts/docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ log.txt
/agents/*
!/agents/index.md

# --- Generated interactive Action Browser (built by tools/actionBrowser) ---
/overview/action-browser.html
/overview/action-browser.json
# --- Interactive Action Browser (built by tools/actionBrowser) ---
# Intentionally NOT ignored: docs-pr-amend.yml regenerates the generated HTML
# + JSON and commits them onto the PR branch so the catalog is reviewable in
# the same PR that changed the agents. The docs-site deploy builds its own
# copy separately.
599 changes: 599 additions & 0 deletions ts/docs/overview/action-browser.html

Large diffs are not rendered by default.

Loading
Loading