From llmwiki
Files a session closeout note into the AI-Output directory with structured headings for outcome, changes, verification, evidence, blockers, and next steps. Preserves work results as reviewable drafts for human promotion.
How this command is triggered — by the user, by Claude, or both
Slash command
/llmwiki:vault-agent-closeoutThe summary Claude sees in its command listing — used to decide when to auto-load this command
# vault-agent-closeout -- file a session closeout into AI-Output Use this skill when an agent finishes a meaningful work unit and the result should survive the session as a reviewable draft. ## Goal Create one concise closeout note under: The closeout is quarantine output, not durable team memory. Humans review and promote later. ## When to use - A code change, release step, research pass, or debugging session finished. - The user asks to save, file, archive, or preserve what happened. - A long-running agent needs a handoff record for another host. Do not use it for trivial shell o...
Use this skill when an agent finishes a meaningful work unit and the result should survive the session as a reviewable draft.
Create one concise closeout note under:
00-Inbox/AI-Output/{agent}/YYYY-MM-DD-{slug}.md
The closeout is quarantine output, not durable team memory. Humans review and promote later.
Do not use it for trivial shell output, navigation, or throwaway chat.
Write a short Markdown body with these headings:
# Closeout
## Outcome
## Changes
## Verification
## Evidence
## Blockers
## Next
Keep it factual. Include paths, commands, commit/tag/manifest hashes, artifact paths, PR/issue links, and dates when available. Separate verified facts from inference.
Persist with vault.writeAIOutput:
const result = vault.writeAIOutput({
persona: "<agent host: codex | claude | opencode | gemini>",
parentQuery: "<the user's work request or closeout request>",
sourceNodes: [
"[[path-or-note-used-as-evidence]]"
],
agent: "<model or host identifier>",
body: "<closeout markdown>",
scope: "project",
quarantineState: "new",
dryRun: false
});
If the host cannot truthfully identify itself, use persona: "vault-agent" and
say why in the body. Prefer the concrete host name when known.
Surface result.path and any result.warnings. Never suppress warnings.
sourceNodes is allowed when the evidence is
external to the vault, but the body must still list concrete files, commands,
or artifact links.npx claudepluginhub 2233admin/obsidian-llm-wiki --plugin llmwiki/q-handoffGenerates a session handoff note summarizing progress, decisions, and next actions for continuity across Claude Code sessions.
/session-saveSaves the current Claude Code session summary to an Obsidian vault as a structured markdown note with auto-detected category, related document discovery, and optional git commit.
/file-sessionWrites a rich session minute to the logbook: captures intent, decisions, changed files, and open threads. Enriches existing stubs or creates new entries.
/save-session-logSaves a structured Markdown session log (discussion, analysis, decisions, next steps) to a dated file and propagates durable results into a wiki knowledge vault.
/float-captureSaves full session context with AI enrichment — generates title, decision summary, rationale, handoff note, and updates folder context after significant work.
/session-stopStops recording and saves the current agent session to the project ledger, then generates and pushes a rich summary of the session.