{"id":29022672,"url":"https://github.com/guillaumeast/mentorai","last_synced_at":"2026-05-04T21:32:14.351Z","repository":{"id":300584749,"uuid":"1006131653","full_name":"guillaumeast/mentorai","owner":"guillaumeast","description":"Turn any YouTube channel into a full Custom GPT (avatar, settings, transcripts)","archived":false,"fork":false,"pushed_at":"2025-10-04T19:59:10.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-04T21:29:35.116Z","etag":null,"topics":["automation","bash","cli","gpt","llm","prompt-engineering","text-processing","transcripts","youtube"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/guillaumeast.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}},"created_at":"2025-06-21T15:07:24.000Z","updated_at":"2025-10-04T19:59:12.000Z","dependencies_parsed_at":"2025-06-22T15:34:47.577Z","dependency_job_id":"76352a3f-8ed3-44f2-8f7a-48e98297c648","html_url":"https://github.com/guillaumeast/mentorai","commit_stats":null,"previous_names":["guillaumeast/mentorai"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/guillaumeast/mentorai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumeast%2Fmentorai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumeast%2Fmentorai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumeast%2Fmentorai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumeast%2Fmentorai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guillaumeast","download_url":"https://codeload.github.com/guillaumeast/mentorai/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumeast%2Fmentorai/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32625975,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: 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":["automation","bash","cli","gpt","llm","prompt-engineering","text-processing","transcripts","youtube"],"created_at":"2025-06-26T03:03:22.166Z","updated_at":"2026-05-04T21:32:14.339Z","avatar_url":"https://github.com/guillaumeast.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧠 `mentorai` v0.1.0\n\nMinimal YouTube-to-GPT generator – converts any YouTube channel into a ready-to-upload Custom GPT package, **in one CLI command**.\n\n\u003e **`mentorai`** creates a complete Custom GPT pack from any YouTube channel, including profile, prompt, and transcript knowledge –  \n\u003e so you can talk to your favorite creator, expert, or guru… as if they were right there with you.\n\n[![Language: Bash](https://img.shields.io/badge/language-Bash-89e051)](https://www.gnu.org/software/bash/)\n[![Type: CLI](https://img.shields.io/badge/type-CLI-8b949e)]()\n[![Platform: macOS/Linux](https://img.shields.io/badge/platform-macOS%20%26%20Linux-blue)](https://en.wikipedia.org/wiki/Unix-like)\n[![Status: v0.1.0](https://img.shields.io/badge/status-v0.1.0-darkgreen)](https://github.com/guillaumeast/mentorai/releases)\n\n---\n\n## ✨ Features\n\n- Fully local – no API keys or cloud services needed\n- Only requires [`yt-dlp`](https://github.com/yt-dlp/yt-dlp)\n- Supports full channel URLs or YouTube handles (e.g. `@GoogleDevelopers`)\n- Outputs everything needed to configure a GPT via [chat.openai.com/gpts](https://chat.openai.com/gpts):\n  - 🖼️ Profile picture\n  - 🧠 Cleaned and chunked transcripts (20 files max)\n  - 🪄 Pre-prompt and GPT settings (name, description, instructions)\n- Friendly file structure in `output/\u003cchannel_id_safe\u003e/`\n\n---\n\n### 🚀 Usage\n\n```bash\n./mentorai.bash https://www.youtube.com/@GoogleDevelopers\n```\n\nor just:\n\n```bash\n./mentorai.bash @GoogleDevelopers\n```\n\nOutput will be created in:\n\n```bash\noutput/GoogleDevelopers/\n├── avatar.jpg\n├── settings.txt\n├── prompt.txt\n├── transcript-1.txt\n├── ...\n└── transcript-20.txt\n```\n\n---\n\n### 📦 Dependencies\n\n- `yt-dlp` – fetches videos, metadata and subtitles  \n- `jq` – parses JSON output from `yt-dlp`  \n- `curl` – checks URLs and downloads channel avatar  \n- `grep` – cleans subtitle `.srt` files  \n- `sed` – template variable replacement \u0026 filename parsing  \n- `bash`, `wc`, `xargs` – core shell utilities (standard on macOS/Linux)\n\nInstall example (macOS) :\n```bash\nbrew install yt-dlp jq curl grep gnu-sed\n```\n\n---\n\n## 🧪 Example\n\n```bash\n./mentorai.bash https://www.youtube.com/@GoogleDevelopers\n```\n\nThen go to [https://chat.openai.com/gpts](https://chat.openai.com/gpts) and:\n1. Upload `avatar.jpg`\n2. Copy-paste settings from `settings.txt`\n3. Upload `transcript-*.txt` files\n4. Done.\n\n---\n\n## 🧱 Project structure\n\n```\nmentorai/\n├── README.md\n├── mentorai.bash\n├── prompt_template.txt\n└── output/\n    └── \u003cchannel_id_safe\u003e/\n        ├── avatar.png\n        ├── settings/\n        └── knowledge/\n```\n\n---\n\n\u003e _\"Turn inspiration into conversation — one channel at a time.”_ 🎙️\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaumeast%2Fmentorai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguillaumeast%2Fmentorai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaumeast%2Fmentorai/lists"}