Skip to content
Merged
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
53f06c9
Update webhook URLs in sync-docs workflows to new endpoint
afterrburn Jan 2, 2026
b6c2976
new doc-agents repo
afterrburn Jan 2, 2026
5e92dfd
Convert doc-agents from submodule to regular directory
afterrburn Jan 2, 2026
02191d5
test
afterrburn Jan 2, 2026
01eb677
fix query failure
afterrburn Jan 2, 2026
f442fe2
Add Documentation Q&A Agent
afterrburn Jan 3, 2026
72abe1b
Refactor agent structure and add authentication middleware
afterrburn Jan 3, 2026
7c11fbe
Update agent configuration and refactor build logic
afterrburn Jan 3, 2026
563a597
Update CLI commands to use bunx for execution
afterrburn Jan 4, 2026
fedd6a2
Refactor API services and remove environment validation
afterrburn Jan 6, 2026
c0f3084
Update environment variables and enhance KV service initialization
afterrburn Jan 8, 2026
3590756
Enhance agent pulse functionality and improve tutorial state management
afterrburn Jan 11, 2026
d40a105
Implement session management API and refactor session handling
afterrburn Jan 15, 2026
ff29dd3
Merge branch 'main' into seng/agent-migration
afterrburn Jan 15, 2026
59aad91
Rename sync job to full-sync in GitHub Actions workflow for clarity
afterrburn Jan 15, 2026
7c0fa15
Remove pull_request trigger from full docs sync workflow in GitHub Ac…
afterrburn Jan 15, 2026
88beb67
Enhance middleware and API authentication for Agentuity integration
afterrburn Jan 15, 2026
3e47901
Update .env.example to remove duplicate AGENT_BEARER_TOKEN entry
afterrburn Jan 15, 2026
c80052a
Remove deprecated files and update package dependencies
afterrburn Jan 18, 2026
563ef6d
Update authentication mechanism in workflows and API route
afterrburn Jan 19, 2026
9f2e46c
Update environment configuration and clean up logging in agent pulse
afterrburn Jan 19, 2026
d960857
Refactor agent pulse and document QA components
afterrburn Jan 19, 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
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Agent Configuration
AGENT_BASE_URL=http://127.0.0.1:3500
AGENT_BEARER_TOKEN=
AGENTUITY_REGION=use

# KV-store is hitting Agentuity Service API, this can be found in `agent-docs` after running `agentuity dev`
AGENTUITY_API_KEY=
# This is for Bearer token auth
AGENT_BEARER_TOKEN=
6 changes: 3 additions & 3 deletions .github/workflows/sync-docs-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

jobs:
sync:
full-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -19,9 +19,9 @@ jobs:

- name: Build and send payload
env:
AGENTUITY_TOKEN: ${{ secrets.AGENTUITY_TOKEN }}
AGENT_BEARER_TOKEN: ${{ secrets.AGENT_BEARER_TOKEN }}
run: |
set -euo pipefail
cat all-files.txt | \
./bin/build-payload.sh "${{ github.repository }}" full | \
./bin/send-webhook.sh "https://agentuity.ai/webhook/f61d5ce9d6ed85695cc992c55ccdc2a6" "Bearer $AGENTUITY_TOKEN"
./bin/send-webhook.sh "https://p0f83a312791b60ff.agentuity.run/api/process-docs" "Bearer $AGENT_BEARER_TOKEN"
4 changes: 2 additions & 2 deletions .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:

- name: Build and send payload
env:
AGENTUITY_TOKEN: ${{ secrets.AGENTUITY_TOKEN }}
AGENT_BEARER_TOKEN: ${{ secrets.AGENT_BEARER_TOKEN }}
run: |
set -euo pipefail
cat changed-files.txt | \
./bin/build-payload.sh "${{ github.repository }}" incremental | \
./bin/send-webhook.sh "https://agentuity.ai/webhook/f61d5ce9d6ed85695cc992c55ccdc2a6" "Bearer $AGENTUITY_TOKEN"
./bin/send-webhook.sh "https://p0f83a312791b60ff.agentuity.run/api/process-docs" "Bearer $AGENT_BEARER_TOKEN"
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ To make the search feature work, you must set up `.env.local` with the following
4. **Update `AGENTUITY_API_KEY`:**
If you are a contributor from outside the Agentuity organization, ensure that you update the `AGENTUITY_API_KEY` in your `.env.local` file with your specific SDK key from the `agentuity dev` run.

## GitHub Actions Secrets

The following secrets need to be configured in GitHub repository settings for the CI/CD workflows to function:

| Secret | Description |
|--------|-------------|
| `AGENT_BEARER_TOKEN` | Bearer token for authenticating with the `process-docs` API endpoint. This must match the `AGENT_BEARER_TOKEN` environment variable configured in your Agentuity deployment. |

To set up:
1. Go to your GitHub repository → Settings → Secrets and variables → Actions
2. Click "New repository secret"
3. Add `AGENT_BEARER_TOKEN` with the same value configured in the Agentuity environment

## Running Docs Application

```bash
Expand Down
36 changes: 0 additions & 36 deletions agent-docs/.cursor/rules/agent.mdc

This file was deleted.

9 changes: 0 additions & 9 deletions agent-docs/.cursor/rules/agentuity.mdc

This file was deleted.

97 changes: 0 additions & 97 deletions agent-docs/.cursor/rules/sdk.mdc

This file was deleted.

12 changes: 0 additions & 12 deletions agent-docs/.editorconfig

This file was deleted.

113 changes: 0 additions & 113 deletions agent-docs/README.md

This file was deleted.

Loading