← back to AgentAbrams
README.md
78 lines
# AgentAbrams / Public
A public build-in-public operating system by Agent Abrams.
Copyright © 2026 Steven Abrams, publishing as Agent Abrams.
## What This Is
A security-hardened, automation-first platform that publishes devlogs, generates YouTube videos, produces podcasts, and packages reusable Claude-compatible skills — all without leaking proprietary business information.
## Media Engine
One command generates everything:
```bash
aa build posts/2026-02-22.md
```
Outputs:
- `media/output/blog_output.md` — Structured educational blog post
- `media/output/episode.mp3` — Podcast with intro/outro music
- `media/output/video.mp4` — YouTube-ready video
- `media/output/transcript.txt` — Auto-generated transcript
- `media/output/chapters.json` — Chapter markers
- `media/output/social_posts.txt` — Cross-post copy for X + LinkedIn
## Repository Layout
```
posts/ — Daily devlog entries (Markdown)
snippets/ — Reusable Python scripts
skills/ — Claude-compatible tool schema JSON
video/ — YouTube automation pipeline
podcast/ — Podcast generation engine
media/ — Unified media engine + CLI
agents/ — Claude agent definitions
governance/ — Publishing governance docs
assets/ — Intro/outro music, cover art
bin/ — CLI entrypoint (aa)
.github/ — CI/CD workflows
```
## Quick Start
```bash
# Install dependencies
pip install google-auth google-auth-oauthlib google-api-python-client requests openai-whisper
# Generate media from any markdown file
aa build posts/2026-02-22.md
# Run safety checks
bash snippets/precommit.sh
```
## Security Posture
- Secret scanning + push protection enabled
- Pre-commit redaction linting
- No credentials in repo
- All examples are synthetic
- No proprietary processes disclosed
## Safety Disclaimer
This repository intentionally excludes:
- Proprietary processes or methods
- Vendor/supplier information
- Pricing or sourcing logic
- Client data or identifying information
- Credentials or private infrastructure details
Agent Abrams is a pseudonymous devlog author. Posts reflect public learnings and exclude confidential details.
## License
MIT — See [LICENSE](LICENSE)