Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d6356ed
1st commit
magmacomputing Aug 3, 2026
9cfdaae
catch-up
magmacomputing Aug 3, 2026
840bb82
Merge branch 'main' into feature/ai-api
magmacomputing Aug 3, 2026
bc1c1c1
Merge branch 'main' into feature/ai-api
magmacomputing Aug 3, 2026
99697ea
feat(docs): implement TypeDoc Compiler API type expansion pipeline an…
magmacomputing Aug 4, 2026
b5863c8
AI API
magmacomputing Aug 5, 2026
858dd34
PR 1st review
magmacomputing Aug 5, 2026
35478c0
PR 2nd review
magmacomputing Aug 5, 2026
41ca35f
PR new recurrenceAI fn
magmacomputing Aug 6, 2026
d5c260e
PR recurrence 1st review
magmacomputing Aug 6, 2026
8bf8e7f
PR recurrence 2nd review
magmacomputing Aug 6, 2026
06fd92c
PR rrule.library
magmacomputing Aug 6, 2026
b47ac22
PR TimeZone Offset placement
magmacomputing Aug 7, 2026
65306fe
PR new scheduleAI fn
magmacomputing Aug 8, 2026
ac6a275
PR scheduleAI 1st review
magmacomputing Aug 10, 2026
272e786
PR scheduleAI 2nd review
magmacomputing Aug 10, 2026
393b944
PR scheduleAI 3rd review
magmacomputing Aug 10, 2026
4857e7c
PR scheduleAI 4th review
magmacomputing Aug 10, 2026
b5690df
PR new AiModes
magmacomputing Aug 10, 2026
2d7884b
PR AiModes 1st review
magmacomputing Aug 11, 2026
ee11e66
PR AiModes 2nd review
magmacomputing Aug 11, 2026
37a9a7b
PR contextAI new
magmacomputing Aug 12, 2026
b44c659
feat(ai): finalize contextAI, diffAI, and library coercion hardening
magmacomputing Aug 12, 2026
e0c74e1
wrap-up
magmacomputing Aug 12, 2026
d1522c5
PR prep for final release
magmacomputing Aug 12, 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
10 changes: 10 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# .coderabbit.yaml
reviews:
auto_review:
enabled: true
auto_pause_after_reviewed_commits: 0
auto_title_instructions: "Generate a concise PR title that starts with a conventional commit type (feat, fix, chore, etc.) followed by a short imperative description of the change."
path_filters:
# Use "! " at the start of a pattern to EXCLUDE it from the review
- "!package-lock.json" # Ignore npm lockfile
- "!**/package-lock.json" # Ignore nested package lockfiles
- "!**/*.svg" # Ignore SVG graphics and logos
- "!**/public/*.html" # Ignore HTML bundles and demo scripts
- "!**/public/llms*.txt" # Ignore LLM context bundles
- "!**/llms*.txt" # Ignore root or nested LLM context files
- "!**/public/providers.v1.json" # Ignore static provider definitions
- "!**/doc/api/**" # Ignore ONLY the generated TypeDoc API documentation
- "!**/docs/**" # Ignore other generated documentation artifacts
- "!**/.vitepress/cache/**" # Ignore VitePress cache
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,11 @@ jobs:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

- name: Trigger tempo-workspace AI Context Deploy
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3.0.0
with:
token: ${{ secrets.TEMPO_WORKSPACE_DISPATCH_TOKEN }}
repository: magmacomputing/tempo-workspace
event-type: sync-ai-context

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Thumbs.db
**/doc/api/
**/public/api/
**/doc/9-plugins/
**/public/llms-full.txt
**/llms-full.txt
# Secrets and credentials
.env
.env.*
Expand Down
Loading
Loading