Install
openclaw skills install crifCrypto Research Interactive Framework — interactive crypto deep-research with human-AI collaboration. Use this skill when users want to research crypto proje...
openclaw skills install crifInteractive crypto deep-research framework with human-AI collaboration for superior research outcomes.
This file is the entry point for AI agents working within the CRIF framework. You are an AI assistant helping humans conduct crypto research through interactive collaboration.
CRIF is designed for human-AI pair research, not autonomous AI execution. Your role is to:
CRIF supports two execution modes. Mode is determined at session level (not per-workflow) from the user's request:
COLLABORATIVE MODE (Default & Recommended)
AUTONOMOUS MODE (Optional)
Read and follow: ./references/core/orchestrator.md
The Orchestrator is the single entry point for all CRIF operations. It handles:
User request → Orchestrator → resolve workflow → resolve agent → embody → execute
Sub-agents (./references/agents/*.md) are persona definitions only — the Orchestrator reads and embodies their persona when executing assigned workflows.
SKILL.md # This file — entry point
references/
├── core/
│ ├── orchestrator.md # Orchestration lifecycle + routing
│ ├── core-config.md # User settings + workflow registry
│ ├── orchestrator-state-template.md # Template for .orchestrator session state
│ ├── scratch-template.md # Template for per-workflow .scratch
│ └── mcp-servers.md # MCP server installation reference
├── agents/ # Sub-agent persona definitions
│ ├── market-analyst.md
│ ├── project-analyst.md
│ ├── technology-analyst.md
│ ├── content-creator.md
│ ├── qa-specialist.md
│ └── image-creator.md
├── workflows/ # Research workflows
│ └── {workflow-id}/
│ ├── workflow.md # Config + agent assignment + dependencies
│ ├── objectives.md # Mission, objectives, validation criteria
│ ├── template.md # Output structure
│ └── templates/ # Multi-template workflows
├── components/ # Execution protocols
│ ├── workflow-execution.md # Shared: scope → execute → deliver
│ ├── brainstorm-session.md # Brainstorm lifecycle
│ ├── content-creation-init.md # Content creation setup
│ ├── content-creation-execution.md # Content creation execution
│ ├── image-prompt.md # Image prompt (combined)
│ ├── research-brief-init.md # Research brief setup
│ └── research-brief-execution.md # Research brief execution
└── guides/ # Methodology references
├── scope-clarification.md # Scope assessment (Fast/Selective/Full)
├── research-methodology.md # Research depth + principles
├── collaborative-research.md # Checkpoint-based execution
├── output-standards.md # Output types + quality criteria
├── content-style.md # Writing style for content
├── brainstorming-guide.md # Brainstorm techniques
└── image-prompt-engineering.md # AI image prompt construction
workspaces/ # User research projects (runtime)
└── {workspace-id}/
├── .orchestrator # Session state (mode, plan, progress)
├── documents/ # Source materials
└── outputs/ # Research deliverables
├── {workflow-id}/
│ ├── .scratch # Agent working memory (temporary)
│ └── {workflow-id}-{date}.md # Final output
└── synthesis/ # Multi-workflow synthesis (optional)
└── {plan_type}-{date}.md
When activated, files are read in this order:
Orchestrator phase (session setup + workflow routing):
./references/core/orchestrator.md — orchestration lifecycle./references/core/core-config.md — user settings + workflow registry./references/workflows/{workflow-id}/workflow.md — agent assignment + dependencies./references/agents/{agent-id}.md — sub-agent persona to embodyDependency reading (before execution): 5. All files listed in workflow.md Dependencies section (objectives, template, guides)
Execution phase:
6. ./references/components/workflow-execution.md — scope → sources → execute → validate → deliver
Framework Version: 0.1.1