/install andara-rag-search
Andara RAG Knowledge Search
Use this skill when you need to find information about:
- Team members, roles, responsibilities
- Products, pricing, supplier details
- Scientific research, water science, bioelectricity
- Business structure, equity, governance
- Meeting notes, action items, decisions
- CMS pages, content, topic clusters
- Orders, customers, revenue data
- Any business intelligence question
How to Use
Run a PostgreSQL query against the knowledge_base table using the bash tool:
psql "$DATABASE_URL" \
-c "SELECT content::text, source, data_type FROM knowledge_base WHERE content::text ILIKE '%SEARCH_TERM%' LIMIT 5;"
Replace SEARCH_TERM with the relevant keyword(s).
Available Tables
Core Data
| Table | Description | Key Columns |
|---|---|---|
knowledge_base |
RAG chunks (3,800+) | content, source, data_type |
team_members |
Team roster (6 active) | name, role, title, email, department, equity_percent |
team_meetings |
Meeting notes (5) | title, date, summary, key_insights, decisions |
meeting_action_items |
Action items (32) | title, assignee, status, priority, due_date |
team_goals |
Company goals (4) | title, status, target_date, progress_percent |
CMS & Commerce
| Table | Description | Key Columns |
|---|---|---|
pages |
CMS pages (155) | slug, title, content, zone, cluster_id, status |
products |
Products (2) | name, price_cents, description, sku |
orders |
Orders (11) | total, status, customer_name, created_at |
customers |
Customers (10) | name, email, created_at |
clusters |
Topic clusters (20) | name, slug, description |
Intelligence
| Table | Description |
|---|---|
rag_memory_objects |
Learned lessons & policies |
science_articles |
Scientific content |
newsletter_subscribers |
Email subscribers |
Example Queries
Find team member info
psql "$DATABASE_URL" \
-c "SELECT name, title, department, equity_percent FROM team_members WHERE is_active = true;"
Search knowledge base
psql "$DATABASE_URL" \
-c "SELECT LEFT(content::text, 300) as content, source FROM knowledge_base WHERE content::text ILIKE '%chris%' LIMIT 5;"
Get CMS page content
psql "$DATABASE_URL" \
-c "SELECT slug, title, zone FROM pages WHERE status = 'published' ORDER BY slug LIMIT 20;"
Get revenue summary
psql "$DATABASE_URL" \
-c "SELECT COUNT(*) as orders, SUM(total)/100.0 as revenue_eur, AVG(total)/100.0 as avg_order FROM orders;"
Get meeting action items by person
psql "$DATABASE_URL" \
-c "SELECT title, status, priority, due_date FROM meeting_action_items WHERE assignee ILIKE '%chris%';"
Get page content by slug
psql "$DATABASE_URL" \
-c "SELECT title, LEFT(content, 500) as content_preview FROM pages WHERE slug = '/ion/overview';"
Rules
- Always use
LEFT(content::text, 300)to truncate long content fields (content is jsonb, must cast to text) - Default LIMIT to 5-10 results to keep responses concise
- Use
ILIKEfor case-insensitive text searches - Never INSERT, UPDATE, or DELETE — read-only access only
- For questions about the website structure, query the
pagestable - For scientific questions, search
knowledge_baseWHEREdata_type = 'research'OR searchscience_articles
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install andara-rag-search - After installation, invoke the skill by name or use
/andara-rag-search - Provide required inputs per the skill's parameter spec and get structured output
What is Andara Rag Search?
Search the Andara Ionic RAG knowledge base (3,800+ records) for business intel, research, products, team, meetings, and any indexed content. It is an AI Agent Skill for Claude Code / OpenClaw, with 229 downloads so far.
How do I install Andara Rag Search?
Run "/install andara-rag-search" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Andara Rag Search free?
Yes, Andara Rag Search is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Andara Rag Search support?
Andara Rag Search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Andara Rag Search?
It is built and maintained by atiati82 (@atiati82); the current version is v1.0.0.