-
Notifications
You must be signed in to change notification settings - Fork 2
Update onboarding.md #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -166,3 +166,23 @@ Try these steps: | |
| 4. Ask for help with context. | ||
|
|
||
| Getting stuck is part of contributing. Please ask questions. | ||
|
|
||
| You can verify your setup using scaffold commands: | ||
|
|
||
| ```bash | ||
| nexgit version --json | ||
|
|
||
| See docs/onboarding.md for full example outputs. | ||
|
|
||
|
Comment on lines
+175
to
+176
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the self-referential documentation link. This points to the same file, so it doesn’t help readers find examples. Link to a concrete section anchor or a separate examples file. 🤖 Prompt for AI Agents |
||
|
|
||
| --- | ||
|
|
||
| # ⚠️ IMPORTANT (DO NOT MISS) | ||
|
|
||
| You MUST clearly mention: | ||
|
|
||
| 👉 “**scaffold / placeholder output**” | ||
|
|
||
| This is part of acceptance criteria. | ||
|
|
||
| --- | ||
|
Comment on lines
+178
to
+188
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove PR-template/process text from onboarding docs. The “IMPORTANT (DO NOT MISS)” block and mandatory phrase requirement look like review/acceptance instructions, not contributor onboarding content. This should be removed from this doc (or moved to PR template/reviewer checklist docs). Suggested doc cleanup----
-
-# ⚠️ IMPORTANT (DO NOT MISS)
-
-You MUST clearly mention:
-
-👉 “**scaffold / placeholder output**”
-
-This is part of acceptance criteria.
-
----🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use a repo-local command for setup verification.
nexgit version --jsoncan fail for first-time contributors ifnexgitis not installed onPATH. This doc currently teachescargo run -p nexgit-cli -- ..., so verification should follow that pattern (or add an explicit install step first).Suggested doc fix
Verify each finding against the current code and only fix it if needed.
In
@docs/onboarding.mdaround lines 170 - 174, Replace the repo-globalverification command "nexgit version --json" with the repo-local invocation
"cargo run -p nexgit-cli -- version --json" so first-time contributors who
haven't installed nexgit on PATH can run the check; update the onboarding text
to show the cargo run form (or alternatively add an explicit install step) and
ensure the example matches the earlier guidance that uses cargo run for nexgit
CLI.