{"id":48467482,"url":"https://github.com/blordeus/content-tools","last_synced_at":"2026-04-07T05:03:12.582Z","repository":{"id":348739540,"uuid":"1199665653","full_name":"blordeus/content-tools","owner":"blordeus","description":"Desktop apps for repurposing Sarcastic Joys essays and Elite Executive newsletters into platform-ready content.","archived":false,"fork":false,"pushed_at":"2026-04-02T16:51:21.000Z","size":91,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T03:46:59.854Z","etag":null,"topics":["anthropic","content-tools","customtkinter","desktop-app","python","substack"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blordeus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-02T15:23:51.000Z","updated_at":"2026-04-02T16:47:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/blordeus/content-tools","commit_stats":null,"previous_names":["blordeus/content-tools"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/blordeus/content-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blordeus%2Fcontent-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blordeus%2Fcontent-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blordeus%2Fcontent-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blordeus%2Fcontent-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blordeus","download_url":"https://codeload.github.com/blordeus/content-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blordeus%2Fcontent-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31500404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["anthropic","content-tools","customtkinter","desktop-app","python","substack"],"created_at":"2026-04-07T05:03:08.133Z","updated_at":"2026-04-07T05:03:12.570Z","avatar_url":"https://github.com/blordeus.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Content Tools\n\nTwo desktop apps for repurposing content across publications.\n\n---\n\n## Tools\n\n### Sarcastic Joys — Essay Repurposing (`sarcastic-joys/`)\n\nPaste a finished essay, get four pieces back:\n\n- Instagram caption\n- Instagram carousel (slide-by-slide)\n- Substack Note — direct pull from the essay\n- Substack Note — fresh observation triggered by the essay\n\n**Files:**\n- `sj_gui.py` — desktop GUI\n- `repurpose.py` — CLI version\n\n### Elite Executive — Substack Notes (`elite-executive/`)\n\nPaste 1–3 newsletter URLs, get two Substack notes per link:\n\n- Note A — click-driver with a verbatim hook and CTA\n- Note B — standalone aphoristic insight, no link needed\n\n**Files:**\n- `ee_gui.py` — desktop GUI\n- `elite_exec.py` — CLI version\n\n---\n\n## Setup\n\n**Requirements:** Python 3.10+, VS Code\n\n```bash\n# Clone the repo\ngit clone https://github.com/YOUR_USERNAME/content-tools.git\ncd content-tools\n\n# Create and activate virtual environment\npython -m venv .venv\n.venv\\Scripts\\activate.bat       # Windows CMD\n.venv\\Scripts\\Activate.ps1       # Windows PowerShell\n\n# Install dependencies\npip install anthropic openai customtkinter rich\n```\n\n**Run the apps:**\n\n```bash\npython sarcastic-joys/sj_gui.py\npython elite-executive/ee_gui.py\n```\n\n---\n\n## Shortcuts (Windows)\n\nTwo batch files handle venv activation and launch in one double-click:\n\n- `launch_sj.bat` — launches Sarcastic Joys\n- `launch_ee.bat` — launches Elite Executive\n\n\u003e If you move the project folder, update the path inside each `.bat` file.\n\n---\n\n## AI Backends\n\nBoth apps support four backends, switchable from the UI:\n\n| Backend | Cost | Default Model |\n|---|---|---|\n| Anthropic (Claude) | Paid | claude-opus-4-5 |\n| Groq | Free tier | llama-3.3-70b-versatile |\n| Ollama | Free / offline | llama3.2 |\n| OpenAI | Paid | gpt-4o-mini |\n\nAnthropic produces the sharpest output. Groq is the best free option. Ollama runs fully offline with no API key.\n\n---\n\n## API Keys\n\nKeys are saved to `~/.config/` on first use and persist across sessions. They are excluded from Git via `.gitignore`.\n\n| Backend | Get a key |\n|---|---|\n| Anthropic | https://console.anthropic.com |\n| Groq | https://console.groq.com/keys |\n| OpenAI | https://platform.openai.com/api-keys |\n| Ollama | No key needed — install from https://ollama.com |\n\nEnter the key in the app's top bar and click **Save**. Or set it as an environment variable:\n\n```bash\n# Add to your shell profile or set in Windows System Environment Variables\nANTHROPIC_API_KEY=sk-ant-...\nGROQ_API_KEY=gsk_...\nOPENAI_API_KEY=sk-...\n```\n\n---\n\n## Updating\n\n```bash\ngit add .\ngit commit -m \"your message\"\ngit push\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblordeus%2Fcontent-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblordeus%2Fcontent-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblordeus%2Fcontent-tools/lists"}