- Update DQN trainer with gradient collapse detection warmup - Add portfolio tracker improvements - Include hyperopt trial results (multiple Sharpe ratio experiments) - Add new test files for action/position sign convention, early stopping, cash reserve bugs, and portfolio execution - Update trained model files - Add Claude Code configuration and skills 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
565 B
Bash
Executable File
20 lines
565 B
Bash
Executable File
#!/bin/bash
|
|
# Quick start guide for Claude Flow
|
|
|
|
echo "🚀 Claude Flow Quick Start"
|
|
echo "=========================="
|
|
echo ""
|
|
echo "1. Initialize a swarm:"
|
|
echo " npx claude-flow swarm init --topology hierarchical"
|
|
echo ""
|
|
echo "2. Spawn agents:"
|
|
echo " npx claude-flow agent spawn --type coder --name "API Developer""
|
|
echo ""
|
|
echo "3. Orchestrate tasks:"
|
|
echo " npx claude-flow task orchestrate --task "Build REST API""
|
|
echo ""
|
|
echo "4. Monitor progress:"
|
|
echo " npx claude-flow swarm monitor"
|
|
echo ""
|
|
echo "📚 For more examples, see .claude/commands/"
|