Skip to main content
Version: V1.0.0

Claude Code

Claude Code is an AI-powered coding tool developed by Anthropic. It runs in the terminal as an intelligent coding assistant that helps developers quickly turn ideas into high-quality code.

This topic demonstrates how to build AI-invokable knowledge packs and workflows with seekdb Agent Skill, and how to build a backend application with seekdb MCP Server using Claude Code.

Agent Skills are an AI capability extension format led by Anthropic and released as an open standard. The idea is to package instructions, scripts, and resources into a folder so that AI agents can discover and load these "skills" on demand and complete tasks more accurately and efficiently.

seekdb Agent Skills are "knowledge packs + workflows" built on this standard that can be invoked automatically by AI. After you install them in Claude Code, when you ask seekdb-related questions, Claude Code will use the skill instructions to look up seekdb documentation or run operations such as data import and export—no need to memorize commands or copy docs manually. You get official seekdb documentation and hands-on support while coding. For more on Agent Skills, see seekdb Agent Skills.

Supported skills

SkillDescriptionExample questions
seekdb (installed by default)Covers official seekdb documentation (getting started, development guide, SDK/API, multi-model data, integrations and operations). The AI will find the relevant docs and return answers or examples based on your question.How do I deploy seekdb? / How do I use vector search in seekdb?
importing-to-seekdbImport data into seekdb collections and optionally vectorize specified columns. You can preview Excel/CSV structure and sample data before importing.Import sample_products.xlsx into seekdb and vectorize the Details column.
querying-from-seekdbFilter by metadata for scalar search, with full-text + semantic hybrid search (RRF ranking). Results can be exported to CSV or Excel.Recommend 2 phones with rating above 4.3 and AMOLED display.

Install seekdb Agent Skills in Claude Code

Claude Code discovers and loads Agent Skills from the .claude/skills directory in your project root. Follow these steps to install:

  1. Go to the project root where you want to install the skills.

    cd /path/to/your/project
  2. Install the interactive installer.

    pip install seekdb-agent-skills
  3. Run the interactive installer.

    seekdb-agent-skills
  4. Select the tool.

    Use the ↑↓ arrow keys to select Claude Code, then press Enter to confirm.

    🚀 seekdb Agent Skills Installer
    ==================================================

    📋 Select tool to install to:
    ? Select one tool (use ↑↓ to navigate, Enter to confirm, Ctrl+C to cancel): (Use arrow keys)
    » Claude Code
    OpenClaw
    Cursor
    Codex
    OpenCode
    GitHub Copilot
    Qoder
    Trae
  5. Confirm the install location.

    📁 Project root: /path/to/your/project
    (Skills will be installed under .claude/skills)
    ? Install skills to this directory? (Y/n)

    Enter Y to confirm or n to exit the installer.

  6. Select the skills to install.

    If you only need the AI to reference seekdb docs, press Enter. To import or export Excel/CSV with seekdb, also select importing-to-seekdb and querying-from-seekdb. Use ↑↓ to move, Space to toggle, and Enter to confirm.

    📦 Select skills to install:
    ? Select skills (use ↑↓ to navigate, Space to select, Enter to confirm, Ctrl+C to cancel): (Select multiple with Space)
    » ● seekdb
    ○ importing-to-seekdb
    ○ querying-from-seekdb

Use seekdb Agent Skills in Claude Code

After installation, open Claude Code from your project root and ask questions. The AI will invoke the right skills and answer using the docs or skill capabilities.

Example prompts:

  • How do I deploy seekdb on Mac?
  • How do I use vector search in seekdb?
  • How do I implement hybrid search in seekdb?