docs: fix script name in directory tree examples#2555
Open
darion-yaphet wants to merge 3 commits into
Open
Conversation
Replace update-claude-md.sh with the actual filename setup-tasks.sh in two directory tree examples (Steps 2 and 4 of the detailed walkthrough).
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the README walkthrough’s directory tree examples so the listed script names align with the current Spec Kit bash scripts, avoiding references to a removed update-claude-md.sh.
Changes:
- Replaced
update-claude-md.shwithsetup-tasks.shin the Step 2 and Step 4 directory tree examples.
Show a summary per file
| File | Description |
|---|---|
| README.md | Fixes outdated script name in two documented directory tree examples. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comments suppressed due to low confidence (1)
README.md:592
- This directory tree implies the feature spec lives under
.specify/specs/..., butcreate-new-feature.shcreates specs in$REPO_ROOT/specs(project root), not inside.specify/. Consider adjusting the tree sospecs/001-...is shown at the repo root to avoid confusing users following the walkthrough.
│ └── setup-tasks.sh
├── specs
│ └── 001-create-taskify
│ └── spec.md
└── templates
- Files reviewed: 1/1 changed files
- Comments generated: 1
Comment on lines
+645
to
+649
| @@ -646,7 +646,7 @@ The output of this step will include a number of implementation detail documents | |||
| │ ├── common.sh | |||
| │ ├── create-new-feature.sh | |||
| │ ├── setup-plan.sh | |||
| │ └── update-claude-md.sh | |||
| │ └── setup-tasks.sh | |||
install_shared_infra() installs scripts under .specify/scripts/bash/ (script_type="sh") or .specify/scripts/powershell/ (script_type="ps"), not directly under .specify/scripts/. Update docs/installation.md and the _install_shared_infra docstring to reflect the actual on-disk layout.
Scripts are installed under .specify/scripts/bash/ (or powershell/) not directly under .specify/scripts/. Fix both tree diagrams in the Detailed Process walkthrough to match the actual on-disk layout.
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.
Description
The README contains two directory tree examples (in the detailed walkthrough under Steps 2 and 4) that reference update-claude-md.sh. This script no longer exists —
the actual file in scripts/bash/ is setup-tasks.sh. This PR corrects both occurrences so the documented structure matches the real repository layout.
Testing
AI Disclosure
Discrepancy identified and fix generated with Claude Code (Anthropic). Change is a two-line documentation-only update with no functional impact.