Skip to content

v2026.05.0 — 9 agent-agnostic skills + schema refresh

Choose a tag to compare

@ozgurkarahan ozgurkarahan released this 13 May 15:42
· 11 commits to master since this release
ad9cd53

First versioned release.
Full history: CHANGELOG.md
First versioned release. Brings the new and updated agent skills from the maintainer's private memory wiki back to this public teaching repo, scrubbed of real client / colleague / personal references.

Added

  • 9 agent-agnostic skills, each shipped in two parallel locations to satisfy both conventions used in this repo:

    • .github/instructions/{slug}.instructions.md — for GitHub Copilot CLI (applyTo: "**" frontmatter)
    • memory/workflows/{slug}.md — canonical plain-markdown procedure (the existing repo convention)

    New skills:

    • close-week / plan-week — Weekly operating rhythm using ops/weekly/{ISO}.md files + ops/activity.jsonl event stream
    • project-status — 30-second briefing on any child project (tech stack, history, deployment, current state)
    • review-sessions — Session-data analysis for workflow efficiency, prompt quality, error patterns. Agent-agnostic: supports GitHub Copilot CLI (~/.copilot/session-state/{id}/events.jsonl) and Claude Code (~/.claude/projects/{hash}/{id}.jsonl) via --agent {copilot,claude,all}
    • new-engagement — Scaffold one or more client engagement projects from ~/projects/project-template/
    • lint — Wiki health check trigger
  • Schema updates in memory/schema.md:

    • 11 new category rows to the taxonomy table: Clients, Skills, Agents, Tools, Meetings, Career, Microsoft, Personal, Queries, Ops, Agent Config
    • Client-folder rule for wiki/projects/ with a slug-strip decision table (when to flatten client-foo slugs vs. keep them under client/foo/ sub-folders)
    • Source classification frontmatter fields: source_type, sensitivity, system_of_record, retention, sharing

Changed

  • ingest skill — major refresh: adds Phase 0 (inventory), Phase 2b.5 (consolidation matrix for mass ingest), Phase 6 (7-item self-audit gate), Phase 8 (emit activity event for cross-skill operational tracking)
  • end-session skill — aligned with the post-.ai/ world: project knowledge now lives directly on the wiki page rather than in per-project .ai/ folders
  • query skill — tightened workflow

Removed

  • launch-copilot / launch-claude skills — public consumers shouldn't have to download and run wrapper scripts from an internet repo, and the wrappers added no value over the equivalent native CLI invocation (cd <project> + copilot --allow-all-tools / claude --dangerously-skip-permissions). The new-engagement skill was updated to use native commands in its examples.
  • sync skill — targeted a .ai/ folder convention that was retired in April 2026 (project knowledge now lives directly on the wiki page, see end-session); the reference script was not shipped publicly and contained internal client-specific hardcoded mappings. If a generic drift-detection workflow is wanted later, it should ship as a fresh skill paired with a configurable script.

Notes

  • All examples were scrubbed via a one-shot script + manual review: client names → Acme / Contoso / Fabrikam / Northwind / Globex, colleague names → Colleague A..I, personal paths → ~/projects/..., repo refs → github.com/{your-username}/..., internal back-references → internal-*-lesson placeholders.
  • review-sessions defines an agent-agnostic contract but no reference parser ships in this release — implementers should match the schema documented in the skill (Copilot CLI event-stream parser + Claude Code turn parser).
  • Reference: PR #1.