devmemory/skills/devmemory-coordination/SKILL.md
Universal agent coordination to share learnings, skills, and context across all AI agents (Claude, Cursor, Copilot, Mistral, Antigravity) running on this project.
npx skillsauth add ai-provenance/ai-dev-memory devmemory-coordinationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill works with ANY AI coding agent (Cursor, Claude, Copilot, Mistral, Antigravity, etc.)
All agents share the same memory system. What one agent learns, all agents can use.
# Get complete context for your task
from devmemory.agent_tools import get_universal_agent_tools
memory = get_universal_agent_tools()
context = memory.get_hierarchical_context("implement authentication system")
# Store what you've learned (universal format)
memory.store_agent_learning(
learning="Use OAuth2 with PKCE for mobile auth to prevent token theft",
learning_type="semantic",
topics=["security", "authentication", "mobile"],
entities=["OAuth2", "PKCE"]
)
# Check if skill exists
skill = memory.get_agent_skill("authentication_pattern")
if not skill:
# Store new skill for all agents to use
memory.store_agent_skill(
skill_name="authentication_pattern",
skill_description="Secure authentication pattern using JWT with refresh tokens",
implementation="1. Use short-lived access tokens...",
use_cases=["Web applications", "Mobile apps"]
)
# Check who's working on what
coordination = memory.get_hierarchical_context("current work")
active_sessions = coordination["coordination"]["active_sessions"]
# Announce your work
memory.store_agent_learning(
learning="Currently implementing OAuth2 provider integration",
topics=["active-work", "coordination"],
entities=["authentication"]
)
Store:
Avoid:
development
Search project memory before starting tasks, and store what you learn (architecture, decisions, gotchas) after making them. Use when starting a new codebase task, bug fix, or feature.
development
Refresh and read the automatically generated project context from DevMemory before diving into the codebase. Use at the beginning of a session or when working on a new branch.
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.