docs: publish comprehensive master README guide#2
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR replaces the minimal root README with a comprehensive, command-driven operations guide for the ROS parent repo (and its program/* submodules), and introduces a “git status tracking” mechanism (collector script + bash shim + installer) with accompanying design/implementation docs and tests.
Changes:
- Rewrote
README.mdinto an onboarding + day-2 operations manual with troubleshooting and contribution workflow. - Added a git-status tracking system (collector, shim snippet,
.bashrcinstaller) and end-to-end bash tests. - Added specs/plans under
docs/superpowers/documenting the README and tracking-system design/implementation.
Reviewed changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
.gitignore |
Ignores .tracking/ artifacts produced by the new tracker. |
README.md |
Full rewrite into an operations manual; includes tracking usage section and references. |
scripts/track-git-status.sh |
Collector that parses porcelain output and writes .tracking/latest.json, history.ndjson, latest.txt with rotation/locking. |
scripts/install-git-tracking-shim.sh |
Installs a snippet source block into ~/.bashrc (idempotent). |
session/docs/snippets/git-tracking-shim.bash |
Bash git() function shim that runs the collector for status/st in the tracked repo root. |
scripts/tests/test-track-git-status.sh |
Tests collector output, rotation behavior, collision handling, and concurrent execution. |
scripts/tests/test-git-tracking-shim.sh |
Tests shim routing/guardrails and installer idempotence. |
docs/superpowers/specs/2026-05-03-master-readme-guidance-design.md |
Design spec for the new master README content/structure. |
docs/superpowers/specs/2026-05-01-git-status-tracking-design.md |
Design spec for the git status tracking system and constraints. |
docs/superpowers/plans/2026-05-03-master-readme-guidance-implementation.md |
Implementation plan describing how the README rewrite was produced/validated. |
docs/superpowers/plans/2026-05-02-git-status-tracking-implementation.md |
Implementation plan for the tracking collector/shim/installer/tests. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+88
to
+91
| real_git="$(_git_tracking_resolve_real_git_bin)" | ||
| tracker="${TRACKER_SCRIPT:-/mnt/data/ros/scripts/track-git-status.sh}" | ||
| tracked_root="/mnt/data/ros" | ||
| cmd="$(_git_tracking_effective_command "$@")" |
Comment on lines
+100
to
+104
| tracking_dir="$top/.tracking" | ||
| branch="$("$real_git" -C "$top" branch --show-current 2>/dev/null || printf 'unknown')" | ||
| porcelain_file="$tracking_dir/.git-status-porcelain.$$.$RANDOM" | ||
|
|
||
| mkdir -p "$tracking_dir" |
Comment on lines
+140
to
+144
| cd <path-to-your-ROS-clone> || exit 1 | ||
| git rev-parse --show-toplevel | ||
| git status | ||
| ls -la .tracking | ||
| ``` |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Owner
Author
|
@copilot apply changes based on the comments in this thread |
Owner
Author
|
https://gh.io/copilot-coding-agent-docs apply changes based on the comments in #2 (review) |
Owner
Author
|
@copilot apply changes based on the comments in #2 (review) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test Plan