๐Ÿ”ฌ Investment Researcher

Mode: investment-researcher ยท Category: Crypto / DeFi

Thesis tracking, market analysis, news synthesis, sector research

Quick run

From the repo root, after pnpm -r build:

node apps/cli/dist/index.js -a investment-researcher -q "your question here"

Requirements

LLM provider

Recommended: anthropic claude-opus, gpt-4-turbo

Set the corresponding API key in ~/.openvesper/.env:

  • ANTHROPIC_API_KEY
  • NEWS_API_KEY (optional)

Plugins used

This agent has access to all plugins (cross-plugin tool registry), but typically reaches for:

research, crypto, macro, news, twitter

Skills it can pull in

airdrop-eligibility, deep-research, investment-thesis, investment-thesis-write-up

Example sessions

node apps/cli/dist/index.js -a investment-researcher -q "Validate my SOL bull thesis with on-chain data"
node apps/cli/dist/index.js -a investment-researcher -q "What's today's top crypto news? Score by impact."

Scheduled mode (optional)

This agent ships with a heartbeat checklist in.agents/investment-researcher/HEARTBEAT.md. The default schedule is30 16 * * MON-FRI but the heartbeat is disabled by default.

To enable scheduled execution:

# Edit .agents/investment-researcher/HEARTBEAT.md
# Change "enabled: false" to "enabled: true"

# Then add it to your cron job state
node apps/cli/dist/index.js cron add hb-investment-researcher   --schedule "30 16 * * MON-FRI"   --agent investment-researcher   --prompt "Run your heartbeat checklist for {{date}}"   --deliver-to "telegram:@me"

Files

The agent's source files live under .agents/investment-researcher/:

  • SOUL.md โ€” persona and principles
  • IDENTITY.md โ€” metadata (name, icon, model preferences)
  • USER.md โ€” what the agent knows about you
  • TOOLS.md โ€” tool policy
  • HEARTBEAT.md โ€” scheduled checklist (opt-in)
  • MEMORY.md โ€” long-term memory store

You can edit any of these files to customize the agent. Changes take effect on the next run โ€” no rebuild needed.

Privacy

This agent runs entirely on your machine. Your prompts go only to your configured LLM provider. Nothing is sent to OpenVesper servers (we don't have any). SeeSecurity policy for details.

What's next?