Skip to content

chore: rebrand storyvox → Candela in org profile#1

Open
jphein wants to merge 1 commit into
mainfrom
chore/rebrand-candela
Open

chore: rebrand storyvox → Candela in org profile#1
jphein wants to merge 1 commit into
mainfrom
chore/rebrand-candela

Conversation

@jphein

@jphein jphein commented Jun 5, 2026

Copy link
Copy Markdown
Contributor

What

Rebrand the Android audiobook player storyvox → Candela in the org profile README.

The Featured projects entry now reads Candela, with links repointed to:

  • repo: github.com/techempower-org/candela
  • site: candela.techempower.org

Scope

Single line changed in profile/README.md (the Featured projects heading). The description prose and every other project entry (forageforall, techempower.org, mempalace, speech-to-cli, etc.) are untouched. No remaining storyvox references in the repo.

Note: the repo/site links assume the corresponding candela repo and DNS repoint land separately — those are tracked outside this PR.

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Documentation
    • Updated the featured projects list, replacing storyvox with Candela.

The Android audiobook player is renamed storyvox → Candela. Update the
Featured projects entry: display name, repo link, and site link now point
at candela / candela.techempower.org. Description prose and all other
project entries unchanged.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Jun 5, 2026

Copy link
Copy Markdown

Need the big picture first? Review this PR in Change Stack to see what changed before going file by file.

Review Change Stack

📝 Walkthrough

Walkthrough

The PR updates the organization profile README by replacing the storyvox project with Candela in the Featured projects list, including updated project links and reference information.

Changes

Profile Documentation Update

Layer / File(s) Summary
Featured projects section
profile/README.md
The Featured projects list entry swaps storyvox for Candela, including new link text and URL.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 A list refreshed with a hop and a bound,
Candela shines where storyvox once was found,
One line changed in the README's light—
Featured projects now gleaming bright! ✨

🚥 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 accurately and concisely describes the primary change: rebranding the storyvox project to Candela in the organization profile README.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

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

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/rebrand-candela

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

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Code Review

This pull request updates the profile/README.md file to rename the 'storyvox' project to 'Candela', updating its repository and website URLs accordingly. There are no review comments, and I have no feedback to provide.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

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 current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@profile/README.md`:
- Line 21: The published link "https://candela.techempower.org" in the README
header for "📚 [Candela]" is unreachable; update the entry by removing or
replacing the broken URL with a working target (for example point the markdown
link directly to the GitHub repo URL
"https://github.com/techempower-org/candela" or add a note like "(site
unavailable)" next to the project name). Ensure the display text "[Candela]"
remains intact and only the destination URL is changed so the link in the README
continues to resolve correctly.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 92d74ea7-d75f-49b2-ba76-cc686be7a91f

📥 Commits

Reviewing files that changed from the base of the PR and between bda6c17 and e7ae060.

📒 Files selected for processing (1)
  • profile/README.md

Comment thread profile/README.md
A free, open-source map of fruit trees and edible plants growing on public land. Expo + InstantDB + Google Maps. AGPL-3.0. Food access mapped, owned by the community, free to anyone with a phone.

### 📚 [storyvox](https://github.com/techempower-org/storyvox) · [storyvox.techempower.org](https://storyvox.techempower.org)
### 📚 [Candela](https://github.com/techempower-org/candela) · [candela.techempower.org](https://candela.techempower.org)

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify that Candela repository and site URLs return successful responses

echo "Checking repository URL..."
gh repo view techempower-org/candela --json name,url 2>&1 || echo "Repository not found"

echo -e "\nChecking site URL..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://candela.techempower.org || echo "Site check failed"

Repository: techempower-org/.github

Length of output: 221


🏁 Script executed:

#!/bin/bash
# Description: Search for any remaining 'storyvox' references in the repository

rg -i 'storyvox' -C 2

Repository: techempower-org/.github

Length of output: 49


Fix broken documentation link: candela.techempower.org is currently unreachable

  • The GitHub repo URL for Candela resolves, but https://candela.techempower.org currently fails (curl HTTP status 000), so merging will likely publish a broken link in profile/README.md (line 21).
  • No remaining storyvox references were found.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@profile/README.md` at line 21, The published link
"https://candela.techempower.org" in the README header for "📚 [Candela]" is
unreachable; update the entry by removing or replacing the broken URL with a
working target (for example point the markdown link directly to the GitHub repo
URL "https://github.com/techempower-org/candela" or add a note like "(site
unavailable)" next to the project name). Ensure the display text "[Candela]"
remains intact and only the destination URL is changed so the link in the README
continues to resolve correctly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant