Skip to content

Update CircuitVerse YouTube Channel link#527

Merged
tachyons merged 1 commit intoCircuitVerse:masterfrom
hanzalahwaheed:patch-1
Feb 22, 2026
Merged

Update CircuitVerse YouTube Channel link#527
tachyons merged 1 commit intoCircuitVerse:masterfrom
hanzalahwaheed:patch-1

Conversation

@hanzalahwaheed
Copy link
Copy Markdown
Contributor

@hanzalahwaheed hanzalahwaheed commented Feb 19, 2026

Fixes #526

Changes done:

  • Update youtube url to use channel handle instead of channel id

Screenshots:

Preview Link(s):

✅️ By submitting this PR, I have verified the following

  • Checked to see if a similar PR has already been opened 🤔️
  • Reviewed the contributing guidelines 🔍️
  • Sample preview link added (add a link from the checks tab after checks complete)
  • Tried Squashing the commits into one

Summary by CodeRabbit

  • Documentation
    • Updated the CircuitVerse YouTube channel reference to the official handle across site content.
    • Replaced old channel links in chapter 8 and chapter 9 documentation pages with the new official handle.
    • Updated the footer "More" section to point to the new YouTube handle for consistent navigation.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Feb 19, 2026

Walkthrough

The pull request updates YouTube channel links in documentation and site config. It replaces the numeric channel ID URL with the handle-based URL (https://www.youtube.com/@circuitverse-official) in docs/chapter8/1onlineforums.mdx, docs/chapter9/1onlineforums.md, and the footer section of docusaurus.config.js. Changes are content-only link replacements; no code logic, API signatures, or exported/public declarations were modified. Lines changed: +1/-1 in each file.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Update CircuitVerse YouTube Channel link' directly and clearly summarizes the main change - updating the YouTube channel URL across the documentation.
Linked Issues check ✅ Passed The PR successfully addresses issue #526 by updating all YouTube channel URLs from the channel ID to the channel handle across three documentation files.
Out of Scope Changes check ✅ Passed All changes are directly related to the linked issue #526 - updating YouTube URLs from channel ID to channel handle in docs files.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docs/chapter8/1onlineforums.mdx`:
- Line 12: Update the parallel documentation file that still contains the old
YouTube channel URL by replacing the old channel link
"https://www.youtube.com/channel/UCAK48dCPc_QON6Y5QqqRLOg" with the new handle
link using the handle "@circuitverse-official" (e.g.,
https://www.youtube.com/@circuitverse-official) in the content string; also
verify externally that the handle resolves to the official CircuitVerse channel
before committing to ensure the new handle is correct.

- CircuitVerse on GitHub: [https://github.com/CircuitVerse](https://github.com/CircuitVerse)
- CircuitVerse on Slack: [https://circuitverse-team.slack.com](https://circuitverse-team.slack.com)
- CircuitVerse YouTube Channel: [https://www.youtube.com/channel/UCAK48dCPc_QON6Y5QqqRLOg](https://www.youtube.com/channel/UCAK48dCPc_QON6Y5QqqRLOg)
- CircuitVerse YouTube Channel: [https://www.youtube.com/@circuitverse-official](https://www.youtube.com/@circuitverse-official)
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for old YouTube channel ID URL
echo "=== Searching for old channel ID URL ==="
rg "UCAK48dCPc_QON6Y5QqqRLOg" --type md --type txt

echo ""
echo "=== Searching for all YouTube links in .mdx and .md files ==="
rg "youtube\.com" --type md
rg "youtube\.com" --glob "*.mdx"

Repository: CircuitVerse/CircuitVerseDocs

Length of output: 3752


🌐 Web query:

YouTube handle @circuitverse-official CircuitVerse official channel

💡 Result:

CircuitVerse’s own documentation lists its official YouTube channel as the channel ID:

  • UCAK48dCPc_QON6Y5QqqRLOg (CircuitVerse YouTube Channel) [1]

So, @circuitverse-official is the official CircuitVerse channel if it resolves to that same channel ID (UCAK48dCPc_QON6Y5QqqRLOg). You can confirm by opening the channel’s About section and checking it links back to CircuitVerse’s official site/docs. [1]

Sources:
[1] CircuitVerse Documentation – “Online Forums” (lists the CircuitVerse YouTube Channel link)


Incomplete update: the old YouTube channel URL still exists in another file, and the new handle is not verified.

The repository contains a parallel file docs/chapter9/1onlineforums.md that still references the old channel ID URL (https://www.youtube.com/channel/UCAK48dCPc_QON6Y5QqqRLOg). Update this file to use the new handle @circuitverse-official for consistency.

Additionally, the web search could not definitively confirm that @circuitverse-official resolves to the correct CircuitVerse channel. Verify the new handle points to the official CircuitVerse channel before merging.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/chapter8/1onlineforums.mdx` at line 12, Update the parallel
documentation file that still contains the old YouTube channel URL by replacing
the old channel link "https://www.youtube.com/channel/UCAK48dCPc_QON6Y5QqqRLOg"
with the new handle link using the handle "@circuitverse-official" (e.g.,
https://www.youtube.com/@circuitverse-official) in the content string; also
verify externally that the handle resolves to the official CircuitVerse channel
before committing to ensure the new handle is correct.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done!

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like the humans are having a chat. I'll hop back into my burrow for now. If you need me again, just tag @coderabbitai in a new comment, and I'll come hopping out!

@hanzalahwaheed hanzalahwaheed force-pushed the patch-1 branch 2 times, most recently from ff355fa to e5615e1 Compare February 19, 2026 05:15
@hanzalahwaheed
Copy link
Copy Markdown
Contributor Author

@Nihal4777 plz do tell if this would be a good addition :)

@Yana-do-code
Copy link
Copy Markdown
Contributor

@hanzalahwaheed Please fix coderabbit requested changes .

@hanzalahwaheed
Copy link
Copy Markdown
Contributor Author

hanzalahwaheed commented Feb 19, 2026

@hanzalahwaheed Please fix coderabbit requested changes .

yep. done with the changes already.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docusaurus.config.js`:
- Around line 97-99: Update the YouTube link under the navbar/social config
where the item with label 'YouTube' is defined: replace the href value
'https://www.youtube.com/@circuitverse-official' with the official handle URL
'https://www.youtube.com/@circuitverse4457' so the 'YouTube' nav item points to
CircuitVerse's verified channel.

Comment thread docusaurus.config.js
@tachyons tachyons merged commit f6deeb5 into CircuitVerse:master Feb 22, 2026
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

good first issue Good for newcomers

Projects

None yet

Development

Successfully merging this pull request may close these issues.

docs: update youtube channel link

3 participants