Awesome-omni-skill idae-db-readme

Skill to dynamically retrieve the documentation (README.md) of the idae-db package via the standardized CLI. idae-db is a flexible and extensible library for interacting with various databases (MongoDB, MySQL, etc.), supporting event hooks, auto-increment fields, and robust connection management. Useful for AI agents, automation scripts, or users needing up-to-date package docs.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/documentation/idae-db-readme" ~/.claude/skills/diegosouzapw-awesome-omni-skill-idae-db-readme && rm -rf "$T"
manifest: skills/documentation/idae-db-readme/SKILL.md
source content

Skill: Read idae-db README

Description

This skill allows you to access the full documentation of the idae-db package by using the CLI get-readme command. It is designed for use by AI agents, automation scripts, or any user who wants to quickly fetch the official package documentation.

Usage

Locally (in the monorepo):

npx @medyll/idae-db get-readme

As an AI skill (VS Code, Claude, Copilot, etc.):

  • Instruct the agent to run the above command to fetch the latest documentation.
  • The output will be the content of the package's README.md.

Integration Examples

  • Automatic generation of contextual documentation
  • Answering questions about the idae-db API, database adapters, or usage patterns
  • Onboarding or contextual help in the editor

Best Practices

  • Always use the get-readme command to ensure the documentation is up to date (avoid static copies)
  • Can be combined with other skills to explore the API, exports, or code examples of the package

Limitations

  • This skill only returns the content of README.md (not example files or detailed API docs)
  • Requires the CLI to be properly exposed in package.json (bin field)