Cherry In The Haystack
No description available
Ask AI about Cherry In The Haystack
Powered by Claude Β· Grounded in docs
I know everything about Cherry In The Haystack. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Cherry in the Haystack
Knowledge β Skills β Agents
π Press Release
Cherry in the Haystack Introduces a Skill Layer for AI Agents Built on top of Flock.ai and integrated with Agent Protocols (ACP / Virtuals on Base)
Seoul, South Korea β April 25, 2026
Cherry in the Haystack announces a new direction: a knowledge-to-skill layer for AI agents, designed to work alongside decentralized AI systems like Flock.ai and agent protocols such as ACP / Virtuals on Base.
Models exist β but they are not easily usable.
Cherry converts knowledge into installable skills for agents.
β‘ What You Can Do (TL;DR)
- Turn knowledge into agent skills
- Install skills into your agent
- Run workflows immediately
- (Optional) connect to onchain agent ecosystems
π οΈ Technical Manual
1. Quick Start (5 min)
Step 1 β Install dependencies
# Node
pnpm install
# Python (for AI pipeline)
poetry install
Step 2 β Run local services
docker-compose up -d
This starts:
- PostgreSQL (data)
- GraphDB (knowledge graph)
- Redis (queue/cache)
Step 3 β Configure environment
cp .env.example .env
Fill in:
# Core
OPENAI_API_KEY=...
# Optional (onchain / advanced)
NEAR_AI_KEY=...
STATUS_RPC_URL=...
DEPLOYER_PRIVATE_KEY=...
Step 4 β Start the system
pnpm dev
Then open:
http://localhost:3000
2. First Run (UI Walkthrough)
1οΈβ£ Register an Agent
- Open dashboard
- Click "Register Agent"
- Connect wallet (optional)
- Get API key
2οΈβ£ Browse Skills
-
Go to Catalog
-
View available concepts / skills
-
Each skill includes:
- description
- quality score
- evidence
3οΈβ£ Install a Skill
- Click Purchase / Install
- Confirm transaction (or demo mode)
Result:
Agent now has access to structured workflow knowledge.
4οΈβ£ Run a Skill
- Open Chat / Agent Console
- Ask:
Use MCP skill to build a simple agent
or
Apply RAG workflow to this dataset
5οΈβ£ (Optional) Enable Privacy Mode
- Toggle π Privacy Mode
This routes execution through TEE:
- input hidden
- reasoning hidden
- only output returned
3. CLI / Agent Integration
Option A β MCP (Recommended)
claude mcp add cherry-kaas apps/api/start-mcp.sh \
--env KAAS_AGENT_API_KEY=YOUR_KEY
Now your agent can:
- browse skills
- install knowledge
- execute workflows
Option B β REST API
POST /api/skills/install
POST /api/skills/run
GET /api/catalog
Option C β WebSocket (Realtime)
- subscribe to skill updates
- track agent activity
4. Core Workflow (How It Works)
Knowledge β Structured Graph β Skill β Agent Execution
- Data ingestion (RSS, docs, etc.)
- AI scoring + classification
- Human validation
- Convert to structured format
- Package as skill
- Agent installs and runs
5. Minimal Skill Example
{
"name": "RAG Basic",
"steps": [
"embed documents",
"store in vector DB",
"retrieve relevant chunks",
"generate answer"
]
}
Agent usage:
Run RAG Basic on this dataset
6. Directory Structure (Simplified)
apps/
api/ β backend (skills, marketplace)
web/ β dashboard
contracts/ β onchain logic
pipeline/
ingestion/
scoring/
synthesis/
7. Advanced (Optional)
π Onchain Integration
- Works with Status / NEAR
- Records provenance
- Enables monetization
π TEE (Privacy Execution)
-
Powered via NEAR AI Cloud
-
Ensures:
- private queries
- secure inference
π§ Skill Marketplace
- creators publish skills
- agents install skills
- usage generates rewards
8. Troubleshooting
Port already in use
lsof -i :3000
kill -9 <PID>
Docker issues
docker-compose down
docker-compose up -d --build
Env not loaded
export $(cat .env | xargs)
9. What This Actually Is
This repo is:
a system that turns knowledge into executable skills for agents
10. Direction
Cherry in the Haystack is evolving into:
the missing layer between models and execution
π About
Cherry in the Haystack transforms knowledge into structured, reusable skills for AI agents.
Built to integrate with:
- Flock.ai
- ACP / Virtuals on Base
- decentralized agent ecosystems
