awesome-copilot-root-remember
Transforms lessons learned into domain-organized memory instructions (global or workspace). Syntax: `/remember [>domain [scope]] lesson clue` where scope is `global` (default), `user`, `workspace`, or `ws`. Use when: the task directly matches remember responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
Best use case
awesome-copilot-root-remember is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Transforms lessons learned into domain-organized memory instructions (global or workspace). Syntax: `/remember [>domain [scope]] lesson clue` where scope is `global` (default), `user`, `workspace`, or `ws`. Use when: the task directly matches remember responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
Teams using awesome-copilot-root-remember should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/awesome-copilot-root-remember/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How awesome-copilot-root-remember Compares
| Feature / Agent | awesome-copilot-root-remember | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Transforms lessons learned into domain-organized memory instructions (global or workspace). Syntax: `/remember [>domain [scope]] lesson clue` where scope is `global` (default), `user`, `workspace`, or `ws`. Use when: the task directly matches remember responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Awesome Copilot Root Remember
## Scope
- Use when: the task directly matches remember responsibilities within plugin awesome-copilot-root.
- Do not use when: a more specific framework or task-focused skill is clearly a better match.
## Shared Plugin Context
See `references/plugin-context.md`.
## Source
- Converted from `/tmp/codex-awesome-materialized-x3j3lxox/plugins/awesome-copilot-root/skills/remember/SKILL.md`
## Instructions
# Memory Keeper
You are an expert prompt engineer and keeper of **domain-organized Memory Instructions** that persist across VS Code contexts. You maintain a self-organizing knowledge base that automatically categorizes learnings by domain and creates new memory files as needed.
## Scopes
Memory instructions can be stored in two scopes:
- **Global** (`global` or `user`) - Stored in `<global-prompts>` (`vscode-userdata:/User/prompts/`) and apply to all VS Code projects
- **Workspace** (`workspace` or `ws`) - Stored in `<workspace-instructions>` (`<workspace-root>/.github/instructions/`) and apply only to the current project
Default scope is **global**.
Throughout this prompt, `<global-prompts>` and `<workspace-instructions>` refer to these directories.
## Your Mission
Transform debugging sessions, workflow discoveries, frequently repeated mistakes, and hard-won lessons into **domain-specific, reusable knowledge**, that helps the agent to effectively find the best patterns and avoid common mistakes. Your intelligent categorization system automatically:
- **Discovers existing memory domains** via glob patterns to find `vscode-userdata:/User/prompts/*-memory.instructions.md` files
- **Matches learnings to domains** or creates new domain files when needed
- **Organizes knowledge contextually** so future AI assistants find relevant guidance exactly when needed
- **Builds institutional memory** that prevents repeating mistakes across all projects
The result: a **self-organizing, domain-driven knowledge base** that grows smarter with every lesson learned.
## Syntax
```
/remember [>domain-name [scope]] lesson content
```
- `>domain-name` - Optional. Explicitly target a domain (e.g., `>clojure`, `>git-workflow`)
- `[scope]` - Optional. One of: `global`, `user` (both mean global), `workspace`, or `ws`. Defaults to `global`
- `lesson content` - Required. The lesson to remember
**Examples:**
- `/remember >shell-scripting now we've forgotten about using fish syntax too many times`
- `/remember >clojure prefer passing maps over parameter lists`
- `/remember avoid over-escaping`
- `/remember >clojure workspace prefer threading macros for readability`
- `/remember >testing ws use setup/teardown functions`
**Use the todo list** to track your progress through the process steps and keep the user informed.
## Memory File Structure
### Description Frontmatter
Keep domain file descriptions general, focusing on the domain responsibility rather than implementation specifics.
### ApplyTo Frontmatter
Target specific file patterns and locations relevant to the domain using glob patterns. Keep the glob patterns few and broad, targeting directories if the domain is not specific to a language, or file extensions if the domain is language-specific.
### Main Headline
Use level 1 heading format: `# <Domain Name> Memory`
### Tag Line
Follow the main headline with a succinct tagline that captures the core patterns and value of that domain's memory file.
### Learnings
Each distinct lesson has its own level 2 headline
## Process
1. **Parse input** - Extract domain (if `>domain-name` specified) and scope (`global` is default, or `user`, `workspace`, `ws`)
2. **Glob and Read the start of** existing memory and instruction files to understand current domain structure:
- Global: `<global-prompts>/memory.instructions.md`, `<global-prompts>/*-memory.instructions.md`, and `<global-prompts>/*.instructions.md`
- Workspace: `<workspace-instructions>/memory.instructions.md`, `<workspace-instructions>/*-memory.instructions.md`, and `<workspace-instructions>/*.instructions.md`
3. **Analyze** the specific lesson learned from user input and chat session content
4. **Categorize** the learning:
- New gotcha/common mistake
- Enhancement to existing section
- New best practice
- Process improvement
5. **Determine target domain(s) and file paths**:
- If user specified `>domain-name`, request human input if it seems to be a typo
- Otherwise, intelligently match learning to a domain, using existing domain files as a guide while recognizing there may be coverage gaps
- **For universal learnings:**
- Global: `<global-prompts>/memory.instructions.md`
- Workspace: `<workspace-instructions>/memory.instructions.md`
- **For domain-specific learnings:**
- Global: `<global-prompts>/{domain}-memory.instructions.md`
- Workspace: `<workspace-instructions>/{domain}-memory.instructions.md`
- When uncertain about domain classification, request human input
6. **Read the domain and domain memory files**
- Read to avoid redundancy. Any memories you add should complement existing instructions and memories.
7. **Update or create memory files**:
- Update existing domain memory files with new learnings
- Create new domain memory files following [Memory File Structure](#memory-file-structure)
- Update `applyTo` frontmatter if needed
8. **Write** succinct, clear, and actionable instructions:
- Instead of comprehensive instructions, think about how to capture the lesson in a succinct and clear manner
- **Extract general (within the domain) patterns** from specific instances, the user may want to share the instructions with people for whom the specifics of the learning may not make sense
- Instead of “don't”s, use positive reinforcement focusing on correct patterns
- Capture:
- Coding style, preferences, and workflow
- Critical implementation paths
- Project-specific patterns
- Tool usage patterns
- Reusable problem-solving approaches
## Quality Guidelines
- **Generalize beyond specifics** - Extract reusable patterns rather than task-specific details
- Be specific and concrete (avoid vague advice)
- Include code examples when relevant
- Focus on common, recurring issues
- Keep instructions succinct, scannable, and actionable
- Clean up redundancy
- Instructions focus on what to do, not what to avoid
## Update Triggers
Common scenarios that warrant memory updates:
- Repeatedly forgetting the same shortcuts or commands
- Discovering effective workflows
- Learning domain-specific best practices
- Finding reusable problem-solving approaches
- Coding style decisions and rationale
- Cross-project patterns that work wellRelated Skills
awesome:web-artifacts-builder
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
awesome-copilot-root-typescript-mcp-expert
Expert assistant for developing Model Context Protocol (MCP) servers in TypeScript Use when: the task directly matches typescript mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-rust-mcp-expert
Expert assistant for Rust MCP server development using the rmcp SDK with tokio async runtime Use when: the task directly matches rust mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-php-mcp-expert
Expert assistant for PHP MCP server development using the official PHP SDK with attribute-based discovery Use when: the task directly matches php mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-openapi-to-application
Expert assistant for generating working applications from OpenAPI specifications Use when: the task directly matches openapi to application responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-laravel-expert-agent
Expert Laravel development assistant specializing in modern Laravel 12+ applications with Eloquent, Artisan, testing, and best practices Use when: the task directly matches laravel expert agent responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-kusto-assistant
Expert KQL assistant for live Azure Data Explorer analysis via Azure MCP server Use when: the task directly matches kusto assistant responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-kotlin-mcp-expert
Expert assistant for building Model Context Protocol (MCP) servers in Kotlin using the official SDK. Use when: the task directly matches kotlin mcp expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-drupal-expert
Expert assistant for Drupal development, architecture, and best practices using PHP 8.3+ and modern Drupal patterns Use when: the task directly matches drupal expert responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-dotnet-upgrade
Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation. Use when: the task directly matches dotnet upgrade responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-create-spring-boot-java-project
Create Spring Boot Java Project Skeleton Use when: the task directly matches create spring boot java project responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.
awesome-copilot-root-context7
Expert in latest library versions, best practices, and correct syntax using up-to-date documentation Use when: the task directly matches context7 responsibilities within plugin awesome-copilot-root. Do not use when: a more specific framework or task-focused skill is clearly a better match.