Back to ProjectsOpen Source
🧩

astro-skills

alpha

Agent skills for building AI applications with anchor, the context engineering toolkit

Shell · MIT · Updated Jul 2026

Agent skills for building AI applications with anchor — the context engineering toolkit for Python.

What Are Skills?

Skills are structured knowledge files that teach AI coding agents (like Claude Code) how to use libraries correctly. They provide:

  • Correct API signatures and import paths
  • WRONG/CORRECT patterns to prevent common mistakes
  • Working code examples for every major feature
  • Parameter reference tables

Available Skills

SkillDescription
anchor-fundamentalsCore pipeline, context items, formatters, observability
anchor-ragRetrieval, chunking, ingestion, reranking, evaluation
anchor-memoryConversation memory, persistence, eviction, graph memory
anchor-agentsAgent framework, tools, skills, MCP integration
anchor-llm-providersLLM providers, streaming, fallback, cost tracking

Installation

git clone https://github.com/Astrointelligence-dev/astro-skills.git cd astro-skills ./install.sh

Then restart Claude Code. The skills will activate automatically when you work with anchor code.

Manual Installation

Copy the .claude-plugin/ and config/ directories to ~/.claude/plugins/astro-skills/.

Usage

Once installed, the skills trigger automatically based on context:

  • Writing a ContextPipeline? → anchor-fundamentals activates
  • Setting up retrieval? → anchor-rag activates
  • Adding conversation memory? → anchor-memory activates
  • Building an agent with tools? → anchor-agents activates
  • Configuring LLM providers? → anchor-llm-providers activates

License

MIT