Skip to content

Commit f672640

Browse files
committed
docs: fix README TOC and update URLs to point to fork
- Add Project Vision to README Table of Contents - Fix 18 URLs in docs/ pointing to wrong repository: - docs/quickstart.md: 4 URLs - docs/installation.md: 12 URLs (including typo fix) - docs/local-development.md: 2 URLs (including typo fix) - Change github.com/github/agentic-sdlc-spec-kit to github.com/tikalk/agentic-sdlc-spec-kit - Fix typo: agentic-sdlc-agentic-sdlc-spec-kit -> agentic-sdlc-spec-kit
1 parent a1289ea commit f672640

4 files changed

Lines changed: 19 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ This fork represents the evolution from a development process to a complete orga
4343

4444
## Table of Contents
4545

46+
- [🎯 Project Vision](#-project-vision)
4647
- [🤔 What is Spec-Driven Development?](#-what-is-spec-driven-development)
4748
- [⚡ Get Started](#-get-started)
4849
- [🎯 Core Features](#-core-features)

docs/installation.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,26 @@
1717
The easiest way to get started is to initialize a new project:
1818

1919
```bash
20-
uvx --from git+https://github.com/github/agentic-sdlc-agentic-sdlc-spec-kit.git specify init <PROJECT_NAME>
20+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME>
2121
```
2222

2323
Or initialize in the current directory:
2424

2525
```bash
26-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init .
26+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init .
2727
# or use the --here flag
28-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init --here
28+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init --here
2929
```
3030

3131
### Specify AI Agent
3232

3333
You can proactively specify your AI agent during initialization:
3434

3535
```bash
36-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --ai claude
37-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --ai gemini
38-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --ai copilot
39-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --ai codebuddy
36+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --ai claude
37+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --ai gemini
38+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --ai copilot
39+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --ai codebuddy
4040
```
4141

4242
### Specify Script Type (Shell vs PowerShell)
@@ -52,16 +52,16 @@ Auto behavior:
5252
Force a specific script type:
5353

5454
```bash
55-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --script sh
56-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --script ps
55+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --script sh
56+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --script ps
5757
```
5858

5959
### Ignore Agent Tools Check
6060

6161
If you prefer to get the templates without checking for the right tools:
6262

6363
```bash
64-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --ai claude --ignore-agent-tools
64+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --ai claude --ignore-agent-tools
6565
```
6666

6767
### Configure Team AI Directives
@@ -70,10 +70,10 @@ Connect to shared team knowledge and standards:
7070

7171
```bash
7272
# Use local team-ai-directives directory
73-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --team-ai-directives ~/workspace/team-ai-directives
73+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --team-ai-directives ~/workspace/team-ai-directives
7474

7575
# Clone from remote repository
76-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <project_name> --team-ai-directives https://github.com/your-org/team-ai-directives.git
76+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <project_name> --team-ai-directives https://github.com/your-org/team-ai-directives.git
7777
```
7878

7979
## Verification

docs/local-development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This guide shows how to iterate on the `specify` CLI locally without publishing
77
## 1. Clone and Switch Branches
88

99
```bash
10-
git clone https://github.com/github/agentic-sdlc-agentic-sdlc-spec-kit.git
10+
git clone https://github.com/tikalk/agentic-sdlc-spec-kit.git
1111
cd spec-kit
1212
# Work on a feature branch
1313
git checkout -b your-feature-branch
@@ -60,7 +60,7 @@ You can also point uvx at a specific branch without merging:
6060
```bash
6161
# Push your working branch first
6262
git push origin your-feature-branch
63-
uvx --from git+https://github.com/github/agentic-sdlc-agentic-sdlc-spec-kit.git@your-feature-branch specify init demo-branch-test --script ps
63+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git@your-feature-branch specify init demo-branch-test --script ps
6464
```
6565

6666
### 4a. Absolute Path uvx (Run From Anywhere)

docs/quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,16 +131,16 @@ This guide will help you get started with Spec-Driven Development using Agentic
131131
132132
```bash
133133
# Create a new project directory
134-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME>
134+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME>
135135
# OR initialize in the current directory
136-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init .
136+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init .
137137
```
138138

139139
Pick script type explicitly (optional):
140140

141141
```bash
142-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME> --script ps # Force PowerShell
143-
uvx --from git+https://github.com/github/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME> --script sh # Force POSIX shell
142+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME> --script ps # Force PowerShell
143+
uvx --from git+https://github.com/tikalk/agentic-sdlc-spec-kit.git specify init <PROJECT_NAME> --script sh # Force POSIX shell
144144
```
145145

146146
### Step 2: Define Your Constitution

0 commit comments

Comments
 (0)