mastra-embedded-docs-look-up

Mastra Embedded Docs Lookup

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "mastra-embedded-docs-look-up" with this command: npx skills add mastra-ai/skills/mastra-ai-skills-mastra-embedded-docs-look-up

Mastra Embedded Docs Lookup

Look up API signatures from embedded docs in node_modules/@mastra/*/dist/docs/

  • these match the installed version.

Documentation Structure

node_modules/@mastra/core/dist/docs/ ├── SKILL.md # Package overview, exports ├── SOURCE_MAP.json # Export→file mappings └── [topics]/ # Feature docs (agents/, workflows/, etc.)

Lookup Process

  1. Find the export:

cat node_modules/@mastra/core/dist/docs/SOURCE_MAP.json | grep '"Agent"'

Returns: { "Agent": { "types": "dist/agent/agent.d.ts", ... } }

  1. Read type definition:

cat node_modules/@mastra/core/dist/agent/agent.d.ts

  1. Check topic docs:

cat node_modules/@mastra/core/dist/docs/agents/01-overview.md

Common Packages

Package Path Contains

@mastra/core

node_modules/@mastra/core/dist/docs/

Agents, Workflows, Tools

@mastra/memory

node_modules/@mastra/memory/dist/docs/

Memory systems

@mastra/rag

node_modules/@mastra/rag/dist/docs/

RAG features

Quick Commands

List installed packages

ls node_modules/@mastra/

Find export in SOURCE_MAP

cat node_modules/@mastra/core/dist/docs/SOURCE_MAP.json | grep '"ExportName"'

Read type definition

cat node_modules/@mastra/core/dist/[path-from-source-map]

List available topics

ls node_modules/@mastra/core/dist/docs/

Why Use This

  • Embedded docs match installed version exactly

  • Mastra evolves quickly — installed docs stay in sync

  • Training data may be outdated

  • Type definitions include JSDoc and examples

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

mastra

No summary provided by upstream source.

Repository SourceNeeds Review
General

create-mastra

No summary provided by upstream source.

Repository SourceNeeds Review
General

mastra-best-practices

No summary provided by upstream source.

Repository SourceNeeds Review
General

mastra-embeded-docs-look-up

No summary provided by upstream source.

Repository SourceNeeds Review