- 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>
26 lines
604 B
Markdown
26 lines
604 B
Markdown
# repo-analyze
|
|
|
|
Deep analysis of GitHub repository with AI insights.
|
|
|
|
## Usage
|
|
```bash
|
|
npx claude-flow github repo-analyze [options]
|
|
```
|
|
|
|
## Options
|
|
- `--repository <owner/repo>` - Repository to analyze
|
|
- `--deep` - Enable deep analysis
|
|
- `--include <areas>` - Include specific areas (issues, prs, code, commits)
|
|
|
|
## Examples
|
|
```bash
|
|
# Basic analysis
|
|
npx claude-flow github repo-analyze --repository myorg/myrepo
|
|
|
|
# Deep analysis
|
|
npx claude-flow github repo-analyze --repository myorg/myrepo --deep
|
|
|
|
# Specific areas
|
|
npx claude-flow github repo-analyze --repository myorg/myrepo --include issues,prs
|
|
```
|