docs: add archive notice with link to websites-monorepo#175
Conversation
WalkthroughDocumentation updates to README.md including the addition of a repository-archiving notice at the top, insertion of a horizontal separator, and correction of list item numbering formatting in the "Previous Iterations" section. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
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. Comment |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
portfolio-feature-flags | f199a73 | Commit Preview URL Branch Preview URL |
Feb 13 2026, 05:07 PM |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@README.md`:
- Around line 1-4: The archive notice starting with "**⚠️ This repository has
been archived.**" contains two broken links to the monorepo and the portfolio
app; locate that exact notice in README.md and replace the two URLs
(`https://github.com/taearls/websites-monorepo` and
`https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio`) with
the correct monorepo and app URLs (verify by finding the actual repo and app
path on GitHub), update the markdown link targets so they return 200, and keep
the same link text/formatting so the notice remains unchanged except for
corrected URLs.
| > **⚠️ This repository has been archived.** Development has moved to the [websites-monorepo](https://github.com/taearls/websites-monorepo). The portfolio app lives at [`apps/portfolio/`](https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio) in the monorepo. | ||
|
|
||
| --- | ||
|
|
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify that the monorepo and portfolio subdirectory URLs are accessible
echo "Checking main monorepo URL..."
main_status=$(curl -s -o /dev/null -w "%{http_code}" https://github.com/taearls/websites-monorepo)
echo "Main monorepo status: $main_status"
echo "Checking portfolio subdirectory URL..."
portfolio_status=$(curl -s -o /dev/null -w "%{http_code}" https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio)
echo "Portfolio subdirectory status: $portfolio_status"
# Summary
echo ""
echo "=== Verification Summary ==="
if [ "$main_status" = "200" ] && [ "$portfolio_status" = "200" ]; then
echo "✓ Both URLs are accessible"
else
echo "✗ One or more URLs are inaccessible"
echo " Main monorepo: $main_status"
echo " Portfolio path: $portfolio_status"
fiRepository: taearls/portfolio
Length of output: 299
Fix the archive notice—the referenced monorepo URLs do not exist.
Both URLs in the archive notice return 404 errors:
https://github.com/taearls/websites-monorepo→ 404https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio→ 404
Users following these links will encounter errors. Obtain the correct monorepo repository URLs and update the archive notice before merging.
🤖 Prompt for AI Agents
In `@README.md` around lines 1 - 4, The archive notice starting with "**⚠️ This
repository has been archived.**" contains two broken links to the monorepo and
the portfolio app; locate that exact notice in README.md and replace the two
URLs (`https://github.com/taearls/websites-monorepo` and
`https://github.com/taearls/websites-monorepo/tree/main/apps/portfolio`) with
the correct monorepo and app URLs (verify by finding the actual repo and app
path on GitHub), update the markdown link targets so they return 200, and keep
the same link text/formatting so the notice remains unchanged except for
corrected URLs.
Deploying portfolio with
|
| Latest commit: |
f199a73
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://8aa4d2b3.portfolio-next.pages.dev |
| Branch Preview URL: | https://docs-archive-notice.portfolio-next.pages.dev |
Summary
apps/portfolio/in the monorepoThis is part of taearls/websites-monorepo#12 — archiving the original repositories after migrating to the monorepo.
🤖 Generated with Claude Code
Summary by CodeRabbit