Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c2f394f
feat: Add Meta Threads platform support with factory pattern architec…
hongphuc5497 Apr 6, 2026
4d8c393
Make the app runnable in Docker for GUI and CLI
hongphuc5497 Apr 23, 2026
e8d95df
Keep container workflow instructions aligned with the code
hongphuc5497 Apr 23, 2026
8fe3de4
Track the external Reddit video maker as a submodule
hongphuc5497 Apr 23, 2026
4dcad75
Upgrade oudated deps, migrate to Python 3.14.4
hongphuc5497 Apr 23, 2026
fe580b2
Add GitNexus index
hongphuc5497 Apr 23, 2026
635ba27
update AGENTS.md and CLAUDE.md
hongphuc5497 Apr 23, 2026
e23094a
chore: update Python version
hongphuc5497 May 4, 2026
89b1c0d
feat: automate pipeline blockers — TTS fallback, 2FA auto-code, YouTu…
hongphuc5497 May 4, 2026
5e183d8
feat: Threads trending scraper — web scraping, engagement filtering, …
hongphuc5497 May 4, 2026
faaaa85
feat: video creation dashboard with real-time progress tracking
hongphuc5497 May 5, 2026
9e219eb
feat: keyword filtering + two-panel Playwright scraping visualization
hongphuc5497 May 5, 2026
263e278
fix: Threads comment screenshots, TTS count, background encode perfor…
hongphuc5497 May 5, 2026
77ed4e3
fix: security hardening — remove eval/os.system/shell=True, fix 11 bugs
hongphuc5497 May 5, 2026
586d5c5
chore: add Claude Code, Ruflo, AgentDB tooling to .gitignore
hongphuc5497 May 5, 2026
64e9b6f
fix: medium+low issues — version check, URL regex, login wait, path DRY
hongphuc5497 May 5, 2026
22868d5
fix: re-review findings — os.system, truncation, recursion, swallowed…
hongphuc5497 May 5, 2026
208d1a0
docs: update CLAUDE.md with security hardening + recent changes, bump…
hongphuc5497 May 5, 2026
b922080
feat: upgrade Docker image to python:3.14-slim-bookworm
hongphuc5497 May 5, 2026
89b7909
feat: enable spaCy 3.8.14 with Python 3.14 support
hongphuc5497 May 5, 2026
6c37d42
fix: spaCy 3.8.13, remove pip cache purge conflict with PIP_NO_CACHE_DIR
hongphuc5497 May 5, 2026
d3fdd41
fix(gui): harden settings and background flows
hongphuc5497 May 12, 2026
d12faef
style(gui): apply desktop neo redesign
hongphuc5497 May 12, 2026
02141fe
fix(gui): tighten youtube id validation
hongphuc5497 May 12, 2026
fe082a9
feat: improve Threads settings and add Supertonic TTS
hongphuc5497 May 19, 2026
8823d5a
chore: admend gitignore, update AGENTS.md
hongphuc5497 May 19, 2026
add6ead
chore: remove gitnexus skills
hongphuc5497 May 23, 2026
290042a
fix: improve Threads screenshot quality — sizing, login overlay, dead…
hongphuc5497 May 25, 2026
1186efb
chore: cleanup code
hongphuc5497 May 25, 2026
f97b0cc
feat: public demo mode + base-path proxy + security hardening
hongphuc5497 May 29, 2026
df25e8e
perf: PyTorch CPU-only + pip cache cleanup to reduce Docker image siz…
hongphuc5497 May 30, 2026
2c9288a
fix: add CMD to Dockerfile (container was exiting immediately)
hongphuc5497 May 30, 2026
a75a89e
fix: add PUBLIC_BASE_PATH and PUBLIC_DEMO_MODE to Dockerfile ENV
hongphuc5497 May 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
Dockerfile
results
.git
.github
.omx
.venv
venv
__pycache__
*.pyc
*.pyo
*.pyd
.pytest_cache
.mypy_cache
.ruff_cache
.DS_Store
config.toml
results
assets/temp
assets/backgrounds
video_creation/data/videos.json
video_creation/data/cookie-threads.json
out
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ blank_issues_enabled: false
contact_links:
- name: Ask a question
about: Join our discord server to ask questions and discuss with maintainers and contributors.
url: https://discord.gg/swqtb7AsNQ
url: https://discord.gg/swqtb7AsNQ
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,36 @@ reddit-bot-351418-5560ebc49cac.json
/.idea
*.pyc
video_creation/data/videos.json
video_creation/data/cookie-threads.json
video_creation/data/envvars.txt
utils/backgrounds.json

config.toml
*.exe

.omx
.gitnexus

# Claude Code / Ruflo / AgentDB local state
.claude-flow/
.claude/agents/
.claude/commands/
.claude/helpers/
.claude/settings.json
.claude/skills/
.claude/memory.db
.swarm/
.understand-anything/
.mcp.json
.playwright-mcp/
.code-review/
agentdb.rvf
agentdb.rvf.lock
claude-flow.config.json
ruvector.db
pipeline-ui-*.png
.codex
.agents
.config
.local
.gstack/
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.14.4
1 change: 1 addition & 0 deletions AGENTS.md
Loading