Knowledge → Skills → Agents
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.
- Turn knowledge into agent skills
- Install skills into your agent
- Run workflows immediately
- (Optional) connect to onchain agent ecosystems
# Node
pnpm install
# Python (for AI pipeline)
poetry installdocker-compose up -dThis starts:
- PostgreSQL (data)
- GraphDB (knowledge graph)
- Redis (queue/cache)
cp .env.example .envFill in:
# Core
OPENAI_API_KEY=...
# Optional (onchain / advanced)
NEAR_AI_KEY=...
STATUS_RPC_URL=...
DEPLOYER_PRIVATE_KEY=...pnpm devThen open:
http://localhost:3000
- Open dashboard
- Click "Register Agent"
- Connect wallet (optional)
- Get API key
-
Go to Catalog
-
View available concepts / skills
-
Each skill includes:
- description
- quality score
- evidence
- Click Purchase / Install
- Confirm transaction (or demo mode)
Result:
Agent now has access to structured workflow knowledge.
- Open Chat / Agent Console
- Ask:
Use MCP skill to build a simple agent
or
Apply RAG workflow to this dataset
- Toggle 🔒 Privacy Mode
This routes execution through TEE:
- input hidden
- reasoning hidden
- only output returned
claude mcp add cherry-kaas apps/api/start-mcp.sh \
--env KAAS_AGENT_API_KEY=YOUR_KEYNow your agent can:
- browse skills
- install knowledge
- execute workflows
POST /api/skills/install
POST /api/skills/run
GET /api/catalog- subscribe to skill updates
- track agent activity
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
{
"name": "RAG Basic",
"steps": [
"embed documents",
"store in vector DB",
"retrieve relevant chunks",
"generate answer"
]
}Agent usage:
Run RAG Basic on this dataset
apps/
api/ → backend (skills, marketplace)
web/ → dashboard
contracts/ → onchain logic
pipeline/
ingestion/
scoring/
synthesis/
- Works with Status / NEAR
- Records provenance
- Enables monetization
-
Powered via NEAR AI Cloud
-
Ensures:
- private queries
- secure inference
- creators publish skills
- agents install skills
- usage generates rewards
lsof -i :3000
kill -9 <PID>docker-compose down
docker-compose up -d --buildexport $(cat .env | xargs)This repo is:
a system that turns knowledge into executable skills for agents
Cherry in the Haystack is evolving into:
the missing layer between models and execution
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