agentsclimarketplace

Orchestra memory

Skill luigipascal/skill-forge/examples/orchestra-memory

Queries Orchestra shared memory at localhost:4317 before coding when context may exist in prior chats, synced repos, or ingested threads. Use when the user mentions Orchestra memory, Untitled threads, recall, or cross-project context.From its SKILL.md

Install
npx -y skills add luigipascal/skill-forge --skill orchestra-memory

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.5 KB, 310 tokens by cl100k_base, as published. Nobody here has run it

Orchestra Memory

Orchestra runs locally (default http://localhost:4317). Use it to avoid re-discovering decisions already captured in memory.

When to recall

  • User references a prior ChatGPT/NotebookLM thread by URL or nickname (e.g. "Untitled-1")
  • Starting work on a repo that is in Orchestra sync paths
  • Cross-project decisions (OrbaLang, Forum, Indie, Gustavo, Orchestra itself)

Quick checks

# Health + stats
Invoke-RestMethod http://localhost:4317/api/health

# Search by keyword
Invoke-RestMethod "http://localhost:4317/api/search?q=YOUR_QUERY&limit=10"

# Recall block for agent context
Invoke-RestMethod -Method POST -Uri http://localhost:4317/api/recall `
  -ContentType "application/json" `
  -Body '{"query":"YOUR_QUERY","limit":8}'

# Fetch conversation by ID (from search hits)
Invoke-RestMethod "http://localhost:4317/api/conversations/CONVERSATION_ID"

Match ChatGPT URLs

If the user gives https://chatgpt.com/c/<id>, search conversations:

  • source_id often contains /c/<id>
  • Title may differ from "Untitled-1" — match on URL fragment, not title

After recall

Summarize relevant memory for the user, note conflicts with current task, then proceed with implementation.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.