advanced-memory-skill-creator

Use when planning, scaffolding, validating, or packaging Claude skills inside Advanced Memory MCP.

181 stars

Best use case

advanced-memory-skill-creator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Use when planning, scaffolding, validating, or packaging Claude skills inside Advanced Memory MCP.

Teams using advanced-memory-skill-creator 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

$curl -o ~/.claude/skills/advanced-memory-skill-creator/SKILL.md --create-dirs "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/advanced-memory-skill-creator/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/advanced-memory-skill-creator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How advanced-memory-skill-creator Compares

Feature / Agentadvanced-memory-skill-creatorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Use when planning, scaffolding, validating, or packaging Claude skills inside Advanced Memory MCP.

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

# Advanced Memory Skill Creator
> **Status**: ✅ Research complete
>
> **Last validated**: 2025-11-08
>
> **Confidence**: 🟡 Medium — Ready for packaging – keep sources current

## When to load this skill
- You need to build a new Claude skill that matches Anthropic’s gold-standard structure.
- You are upgrading a legacy skill (single SKILL.md file) into the modular layout.
- You must validate a skill before sharing it with teammates or packaging it for SkillsMP.
- You want to create repeatable automation around scaffolding, validation, or packaging.

## Quick start workflow
1. **Collect requirements** using the prompts in [modules/process-guide.md](modules/process-guide.md#step-1-understanding).
2. **Run the MCP tool**:
   ```python
   adn_skills_creator(
       operation="scaffold",
       skill_name="my-new-skill",
       output_dir="skills/custom",
       category="developer"
   )
   ```
3. **Fill in content** following the templates in `modules/core-guidance.md`.
4. **Validate** and **package**:
   ```python
   adn_skills_creator(operation="validate", skill_path="skills/custom/my-new-skill")
   adn_skills_creator(operation="package", skill_path="skills/custom/my-new-skill", output_dir="dist")
   ```
5. Record sources, update `the status banner`, and publish.

## CLI equivalents
- Scaffold: `uv run am-skill-creator scaffold my-new-skill --output-dir skills/custom`
- Validate: `uv run am-skill-creator validate skills/custom/my-new-skill`
- Package: `uv run am-skill-creator package skills/custom/my-new-skill --output-dir dist`
- Upgrade legacy skill: `uv run am-skill-creator upgrade skills/legacy/old-skill`

## Module overview
- [Core guidance](modules/core-guidance.md) — Complete playbooks for scaffolding, validation, packaging, and automation.
- [Process guide](modules/process-guide.md) — Anthropic six-step methodology tailored to Advanced Memory.
- [Known gaps](modules/known-gaps.md) — Validation tasks, pending research, and integration TODOs.
- [Research checklist](modules/research-checklist.md) — Mandatory workflow to capture sources and verify freshness.

## Research status
- Research complete as of 2025-11-08 (see sources above); rerun checklist quarterly or after Anthropic updates.
- Document new sources inside `the Source Log` and [modules/research-checklist.md](modules/research-checklist.md) when revisions are made.
- Update `the status banner` to 🟢 High after field validation and peer review.

## Related tools and references
- `adn_skills_creator` portmanteau – runtime interface for all operations.
- `scripts/refactor_skills_modular.py` – bulk upgrade helper.
- `docs/patterns/claude-skills/skill-creator-reference.md` – Anthropic gold standard.

Related Skills

advanced-skill-creator

181
from majiayu000/claude-skill-registry

Meta-skill that generates domain-specific skills using advanced reasoning techniques. PROACTIVELY activate for: (1) Create/build/make skills, (2) Generate expert panels for any domain, (3) Design evaluation frameworks, (4) Create research workflows, (5) Structure complex multi-step processes, (6) Instantiate templates with parameters. Triggers: "create a skill for", "build evaluation for", "design workflow for", "generate expert panel for", "how should I approach [complex task]", "create skill", "new skill for", "skill template", "generate skill"

advanced-rendering

181
from majiayu000/claude-skill-registry

Master high-performance rendering for large datasets with Datashader. Use this skill when working with datasets exceeding 100M+ points, optimizing visualization performance, or implementing efficient rendering strategies with rasterization and colormapping techniques.

Advanced React Clean Integration

181
from majiayu000/claude-skill-registry

Integrate React with clean architecture without framework leakage using hooks as adapters and presenters. Use when connecting React to domain logic, designing hook-based DI, or isolating UI from business rules.

Advanced RE Analysis

181
from majiayu000/claude-skill-registry

Specialized reverse engineering analysis workflows for binary analysis, pattern recognition, and vulnerability assessment

advanced-patterns

181
from majiayu000/claude-skill-registry

Advanced T-SQL patterns and techniques for SQL Server. Use this skill when: (1) User needs help with CTEs or recursive queries, (2) User asks about APPLY operator, (3) User wants MERGE or OUTPUT clause help, (4) User works with temporal tables, (5) User needs In-Memory OLTP guidance, (6) User asks about advanced grouping (ROLLUP, CUBE, GROUPING SETS).

advanced-oscal-validator

181
from majiayu000/claude-skill-registry

Perform comprehensive OSCAL validation using community-inspired patterns including JSON schema validation, business rule validation, cross-reference checking, and best practices from IBM Trestle, oscal-pydantic, and Lula. Use for thorough document quality assurance.

Advanced Modular Library Design

181
from majiayu000/claude-skill-registry

Design modular libraries with clear package boundaries, feature-first organization, and clean API surfaces. Use when structuring monorepos, defining module boundaries, or designing library APIs.

advanced-memoization-strategies

181
from majiayu000/claude-skill-registry

Apply principled memoization techniques to reduce re-rendering without introducing correctness bugs.

advanced-math-trading/robustness-risk

181
from majiayu000/claude-skill-registry

Tail risk, EVT, regularization, validation guardrails, and common pitfalls.

advanced-math-trading/portfolio-factors

181
from majiayu000/claude-skill-registry

Factor modeling and portfolio construction (Markowitz, Black-Litterman, constraints, turnover).

advanced-math-trading/foundations-core

181
from majiayu000/claude-skill-registry

Probability, moments/tails, Bayes, and statistical learning foundations for systematic trading.

advanced-kubernetes

181
from majiayu000/claude-skill-registry

Custom Resource Definitions (CRDs) extend Kubernetes API with custom object types. Operators are controllers that manage these custom resources using domain-specific logic.