← 返回
未分类 中文

Andara Rag Search

Search the Andara Ionic RAG knowledge base (3,800+ records) for business intel, research, products, team, meetings, and any indexed content.
在 Andara Ionic RAG 知识库(3,800+ 条记录)中搜索商业情报、研究、产品、团队、会议及任何已索引内容。
atiati82
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 634
下载
💾 1
安装
1
版本
#latest

概述

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

TableDescriptionKey Columns
---------------------------------
knowledge_baseRAG chunks (3,800+)content, source, data_type
team_membersTeam roster (6 active)name, role, title, email, department, equity_percent
team_meetingsMeeting notes (5)title, date, summary, key_insights, decisions
meeting_action_itemsAction items (32)title, assignee, status, priority, due_date
team_goalsCompany goals (4)title, status, target_date, progress_percent

CMS & Commerce

TableDescriptionKey Columns
---------------------------------
pagesCMS pages (155)slug, title, content, zone, cluster_id, status
productsProducts (2)name, price_cents, description, sku
ordersOrders (11)total, status, customer_name, created_at
customersCustomers (10)name, email, created_at
clustersTopic clusters (20)name, slug, description

Intelligence

TableDescription
--------------------
rag_memory_objectsLearned lessons & policies
science_articlesScientific content
newsletter_subscribersEmail 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 ILIKE for case-insensitive text searches
  • Never INSERT, UPDATE, or DELETE — read-only access only
  • For questions about the website structure, query the pages table
  • For scientific questions, search knowledge_base WHERE data_type = 'research' OR search science_articles

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-02 02:10 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Openclaw Admin

atiati82
管理并检查 OpenClaw 多代理网关——列出代理、检查模型健康、查看路由规则、管理定时任务、检查上下文预算以及运行系统命令
★ 0 📥 653

Andara Self Improvement

atiati82
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 0 📥 503

Knowledge Gaps

atiati82
记录汉斯未能回答的问题并标记缺失的知识
★ 0 📥 597