https://github.com/ebowwa/dailydocupdates
Daily scraped documentation from providers
https://github.com/ebowwa/dailydocupdates
ai claude claudecode coding hft kalshi polymarket rust
Last synced: about 1 month ago
JSON representation
Daily scraped documentation from providers
- Host: GitHub
- URL: https://github.com/ebowwa/dailydocupdates
- Owner: ebowwa
- Created: 2026-02-06T00:13:09.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-05-30T20:26:04.000Z (about 1 month ago)
- Last Synced: 2026-05-30T22:13:52.030Z (about 1 month ago)
- Topics: ai, claude, claudecode, coding, hft, kalshi, polymarket, rust
- Language: TypeScript
- Homepage:
- Size: 7.84 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Daily Doc Updates
> Daily scraped documentation from Claude Code, Polymarket, Bun, and Rust.
**Last Updated:** 2026-02-22
---
## Overview
This repository contains automatically generated documentation from daily scrapes:
### Claude Code Docs
- Full markdown documentation downloads from code.claude.com
- GitHub repository commits and releases
- Platform release notes
### Polymarket Docs
- API reference documentation
- Trading guides and concepts
- Market data and builders documentation
### Bun Docs
- Runtime API documentation
- Bundler guides
- Package manager references
- Test runner documentation
### Rust Docs
- The Rust Programming Language Book
- Downloaded from GitHub raw content
- 20 chapters + appendices
---
## Automation
This repository is updated **daily at 12 noon PST** via GitHub Actions.
The automation:
1. **Claude Code**: Downloads from [code.claude.com/docs](https://code.claude.com/docs)
2. **Polymarket**: Scrapes [docs.polymarket.com](https://docs.polymarket.com)
3. **Bun**: Scrapes [bun.sh/docs](https://bun.sh/docs)
4. **Rust**: Downloads from [rust-lang/book](https://github.com/rust-lang/book)
---
## Structure
```
dailydocupdates/
├── README.md # This file
├── docs/
│ ├── claude/ # Claude Code documentation
│ │ ├── getting-started/
│ │ ├── features/
│ │ ├── guides/
│ │ └── reference/
│ ├── polymarket/ # Polymarket documentation
│ │ ├── api-reference/
│ │ ├── trading/
│ │ ├── market-data/
│ │ └── builders/
│ ├── bun/ # Bun documentation
│ │ ├── runtime/
│ │ ├── bundler/
│ │ ├── guides/
│ │ └── test-runner/
│ └── rust/ # Rust Book
│ ├── ch01-*.md
│ ├── ch02-*.md
│ └── appendix-*.md
├── daily/ # Daily generated updates
│ ├── claude-code/
│ ├── polymarket/
│ ├── bun/
│ └── rust/
├── scripts/ # Automation scripts
│ ├── scrape.ts # Main orchestrator
│ ├── base.ts # Shared utilities
│ └── sources/ # Source composables
└── .github/
└── workflows/
└── daily.yml # GitHub Actions workflow
```
---
## Usage
### Run the scraper manually
```bash
bun run scrape
```
### Browse documentation
- **Claude Code**: `docs/claude/`
- **Polymarket**: `docs/polymarket/`
- **Bun**: `docs/bun/`
- **Rust**: `docs/rust/`
---
## License
This documentation aggregates content from official resources.
Original content is copyright their respective owners.
---
*Generated by automated daily scraping*