원클릭으로
ingest-knowledge
Ingest, index, and query documents in a claw-scoped knowledge workspace.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Ingest, index, and query documents in a claw-scoped knowledge workspace.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage the Trinity AGI auth service and RBAC system -- database schema, role hierarchy, permission management, JWT flow, audit logging, and API endpoints.
Sync files between the host machine and the running Trinity Docker containers — config, agent files, skills, and extensions.
Develop the Trinity AGI Flutter Web Shell -- understand the architecture, A2UI renderer, WebSocket models, dual-client pattern, design tokens, and build workflow.
Operate the Trinity AGI Kubernetes infrastructure -- Helm charts, multi-tenant per-user OpenClaw pods, Vault Agent Injector secrets, minikube dev, and production deployment.
Operate the OpenClaw Gateway that powers Trinity AGI — configure providers, manage sessions, use the CLI, and understand the WebSocket protocol.
Manage the Trinity AGI Docker Compose stack — start, stop, logs, rebuild frontend, and full deploy.
| name | ingest-knowledge |
| description | Ingest, index, and query documents in a claw-scoped knowledge workspace. |
| homepage | https://github.com/trinityagi/trinity |
| metadata | {"openclaw":{"emoji":"📥"}} |
Register, extract, chunk, index, and query documents in the retrieval layer for later use by any downstream workflow.
Use this capability when a claw needs knowledge to be available in the retrieval layer but should not own ingestion itself.
Examples:
Knowledge must stay in the target claw's derived default workspace, not an arbitrary caller-defined workspace.
Default convention:
tenant_<tenantId>__claw_<openclawId>Guidelines:
After indexing, query through auth-service scoped endpoints for the active OpenClaw:
GET /auth/openclaws/:id/lightrag-documentsPOST /auth/openclaws/:id/lightrag-documentsPOST /auth/openclaws/:id/lightrag-documents/:documentId/ingestGET /auth/openclaws/:id/lightrag-documents/:documentId/statusGET /auth/openclaws/:id/lightrag-documents/:documentId/chunksPOST /auth/openclaws/:id/lightrag-query (proxy to /retrieval/search)POST /auth/openclaws/:id/lightrag-compare (proxy to /retrieval/compare)Rules:
/auth/openclawsPOST /auth/openclaws/:id/delegation-token and send it via X-Trinity-DelegationX-OpenClaw-Gateway-Token for the same OpenClaw scope, including document delete operationsOPENCLAW_ID env (UUID) for :id; name aliases may resolve but UUID is canonicalhttp://auth-service:18791 via TRINITY_AUTH_SERVICE_URL); do not send /auth/openclaws/* to the OpenClaw gateway porttrinity-secrets -> LightRAG env)Those belong to downstream, domain-specific skills.
Return: