Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b108a49
Initial plan
Copilot Sep 13, 2025
9248699
Implement cache-memory frontmatter field with memory MCP server
Copilot Sep 13, 2025
c8a0b1d
Update cache-memory to use workflow-based default keys and auto-gener…
Copilot Sep 13, 2025
b28f0f3
Auto-append run_id to cache-memory keys that don't already end with it
Copilot Sep 13, 2025
8114eb6
Add cache-memory to ci-doctor workflow and create test workflow in pk…
Copilot Sep 13, 2025
18c3c53
Add docker-image support to cache-memory frontmatter configuration
Copilot Sep 13, 2025
79bb749
Update MCP memory server configuration to match official documentatio…
Copilot Sep 13, 2025
ba3047f
Remove legacy CacheMemory string field and memory system prompt per f…
Copilot Sep 13, 2025
01c363e
Add comprehensive cache-memory documentation page
Copilot Sep 13, 2025
81e0250
Move cache-memory under tools section as built-in tool with updated c…
Copilot Sep 13, 2025
da5e330
Add test-claude-missing-tool workflow and upgrade cache actions to v5
Copilot Sep 13, 2025
e61f4c1
Add retention-days option to cache-memory tool configuration
Copilot Sep 14, 2025
4a1163b
Enable cache-memory tool in test-safe-output-missing-tool workflow
Copilot Sep 14, 2025
d6aedc6
Update actions/cache from v5 to v4 per GitHub Actions recommendation
Copilot Sep 14, 2025
bf4e287
Merge branch 'origin_main' into copilot/fix-18c775ac-bd7d-4ce4-8c4f-9…
Copilot Sep 14, 2025
5479fc8
Merge origin/main and implement requested cache-memory changes
Copilot Sep 14, 2025
68b12d0
Update test-poem workflow with max-turns 5 and copilot/* push trigger
Copilot Sep 14, 2025
2ede422
Update cache-memory to use npx instead of Docker
Copilot Sep 14, 2025
6697b41
Merge remote-tracking branch 'origin/main' into copilot/fix-18c775ac-…
pelikhan Sep 14, 2025
ac20161
Add cache-memory tool to dev agentic workflow
Copilot Sep 14, 2025
df53c8a
Merge branch 'main' into copilot/fix-18c775ac-bd7d-4ce4-8c4f-9c661213…
pelikhan Sep 14, 2025
7e553a1
Enhance poem generation workflow by adding checks for existing poems …
pelikhan Sep 14, 2025
413e850
Add cache-memory tool support with wildcard access in allowed tools
pelikhan Sep 14, 2025
faa2e76
Enhance poem generation by adding memory graph output and updating al…
pelikhan Sep 14, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-doctor.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 31 additions & 1 deletion .github/workflows/dev.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .github/workflows/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,23 @@ safe-outputs:
engine:
id: claude
max-turns: 5
tools:
cache-memory: true
permissions: read-all
concurrency:
group: "gh-aw-${{ github.workflow }}-${{ github.ref }}"
---

Before starting, read the entire memory graph and print it to the output as "My past poems..."

Then:

Write a short poem.
- check if this poem is already in memory
- if already in memory, generate a new poem

Before returning the poem:
- store generated poem in memory

<!-- This workflow tests the integration with the Claude AI engine.
Meant as a scratchpad in pull requests. -->
Loading
Loading