API
Description
All methods are exposed as MCP tools.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
Repository README
This is the README for timescale/pg-aiguide, shared by 2 entries
in this directory. It describes the repository, not this entry specifically.
API
All methods are exposed as MCP tools.
Documentation Search
`search_docs`
Unified search tool for querying documentation using semantic (vector similarity) or keyword (BM25) search.
**MCP Tool**: `search_docs`
Input
{
"source": "postgres", // required: "postgres", "tiger", or "postgis"
"search_type": "semantic", // required: "semantic" or "keyword"
"query": "How do I create an index?", // required: search query
"version": "17", // required: PostgreSQL version ("14"-"18" or "latest"), ignored for tiger/postgis
"limit": 10 // required: maximum results to return
}
Output (Semantic Search)
{
"results": [
{
"id": 11716,
"content": "CREATE INDEX ...",
"metadata": "{...}", // JSON-encoded metadata
"distance": 0.407 // lower = more relevant
}
]
}
Output (Keyword Search)
{
"results": [
{
"id": 11716,
"content": "CREATE INDEX ...",
"metadata": "{...}", // JSON-encoded metadata
"score": 12.5 // higher = more relevant
}
]
}
Skills
`view_skill`
Retrieves curated skills for common PostgreSQL and TimescaleDB tasks. This tool is disabled when deploying as a claude plugin (which use [agent skills ](https://www.claude.com/blog/skills) directly).
**MCP Tool**: `view_skill`
Input
{
"name": "setup-timescaledb-hypertables", // see available skills in tool description
"path": "SKILL.md", // optional, defaults to "SKILL.md"
}
Output
{
"name": "setup-timescaledb-hypertables",
"path": "SKILL.md",
"description": "Step-by-step instructions for designing table schemas and setting up TimescaleDB with hypertables, indexes, compression, retention policies, and continuous aggregates.",
"content": "...", // full skill content
}
**Available Skills**: Check the MCP tool description for the current list of available skills or look in the `skills` directory.
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11