Skip to content

Commit 6fb6b4d

Browse files
committed
🎨 Update references from Kodano to Company across documentation and project files.
1 parent ffbc0c7 commit 6fb6b4d

12 files changed

Lines changed: 21 additions & 21 deletions

File tree

.claude/commands/speckit.issue-to-spec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ The user input (`$ARGUMENTS`) should contain a GitHub issue reference. Accept an
1818

1919
- Issue number: `42`, `#42`
2020
- Full URL: `https://github.com/OWNER/REPO/issues/42`
21-
- Owner/repo#number: `Kodano/payments-platform#42`
21+
- Owner/repo#number: `Company/payments-platform#42`
2222

2323
If the input is empty or cannot be parsed, stop and tell the user:
2424
```
2525
Uso: /speckit.issue-to-spec <issue>
2626
Exemplos: /speckit.issue-to-spec 42
2727
/speckit.issue-to-spec #42
28-
/speckit.issue-to-spec https://github.com/Kodano/payments-platform/issues/42
28+
/speckit.issue-to-spec https://github.com/Company/payments-platform/issues/42
2929
```
3030

3131
### Step 2 — Resolve repository

.claude/commands/speckit.review-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Run:
2323
git config --get remote.origin.url
2424
```
2525

26-
Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Kodano/payments-platform.git``Kodano`, `payments-platform`).
26+
Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Company/payments-platform.git``Company`, `payments-platform`).
2727

2828
> [!CAUTION]
2929
> ONLY PROCEED IF THE REMOTE IS A GITHUB URL.

.claude/commands/speckit.review-respond.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Run:
1919
git config --get remote.origin.url
2020
```
2121

22-
Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Kodano/payments-platform.git``Kodano`, `payments-platform`).
22+
Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Company/payments-platform.git``Company`, `payments-platform`).
2323

2424
> [!CAUTION]
2525
> ONLY PROCEED IF THE REMOTE IS A GITHUB URL.

.claude/commands/speckit.spec-to-issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ git config --get remote.origin.url
3636
```
3737

3838
> [!CAUTION]
39-
> ONLY PROCEED IF THE REMOTE IS A GITHUB URL. Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Kodano/payments-platform.git``Kodano`, `payments-platform`).
39+
> ONLY PROCEED IF THE REMOTE IS A GITHUB URL. Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Company/payments-platform.git``Company`, `payments-platform`).
4040
4141
### Step 4 — Classify the issue type
4242

.claude/commands/speckit.verify-issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Run:
1919
git config --get remote.origin.url
2020
```
2121

22-
Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Kodano/payments-platform.git``Kodano`, `payments-platform`).
22+
Extract `OWNER` and `REPO` from the URL (e.g. `git@github.com:Company/payments-platform.git``Company`, `payments-platform`).
2323

2424
> [!CAUTION]
2525
> ONLY PROCEED IF THE REMOTE IS A GITHUB URL.

.github/Instructions/code-review.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
applyTo: "**"
33
---
44

5-
# Instruções de Revisão de Código — Kodano Payments Platform
5+
# Instruções de Revisão de Código — Company Payments Platform
66

77
## Arquivos gerados automaticamente — não revisar
88

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Com o nome da solução em mãos:
7474

7575
Nos arquivos `.csproj` (especialmente `src/{Nome}.Api/{Nome}.Api.csproj`):
7676
- `{{add-new-guid}}`: gere um novo GUID (formato `xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`).
77-
- `{{repository}}`: pergunte ao usuário o nome do repositório GitHub (ex: `kodano/payments-api`) ou derive do remote `origin` se já configurado.
77+
- `{{repository}}`: pergunte ao usuário o nome do repositório GitHub (ex: `company/repository`) ou derive do remote `origin` se já configurado.
7878

7979
### Passo 5 — Atualizar Docker
8080

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
CONFIDENTIAL AND PROPRIETARY PROPERTY OF KODANO
22

3-
Copyright (c) 2026 Kodano. All rights reserved.
3+
Copyright (c) 2026 Company. All rights reserved.
44

55
This software and its associated documentation (the "Software") are the
6-
exclusive property of Kodano. Access to, and use of, this Software is
6+
exclusive property of Company. Access to, and use of, this Software is
77
strictly limited to authorized personnel and is subject to the terms and
8-
conditions of a separate written agreement with Kodano.
8+
conditions of a separate written agreement with Company.
99

1010
Unauthorized copying, distribution, modification, public display, or
1111
public performance of this Software, or any portion thereof, via any

src/Solution.Api/Infrastructure/Shared/Modules/OpenApiModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public void Setup(IApplicationBuilder appBuilder)
1717
endpointRouteBuilder.MapScalarApiReference("docs", options =>
1818
{
1919
options
20-
.WithTitle("Kodano: Solution API")
20+
.WithTitle("Company: Solution API")
2121
.WithOpenApiRoutePattern("docs/openapi.json")
2222
.WithTheme(ScalarTheme.Default)
2323
.HideModels();

src/Solution.Api/Solution.Api.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
1212
</PropertyGroup>
1313
<PropertyGroup>
14-
<Company>Kodano</Company>
14+
<Company>Company</Company>
1515
<NeutralLanguage>en-US</NeutralLanguage>
16-
<Copyright>Copyright © Kodano</Copyright>
16+
<Copyright>Copyright © Company</Copyright>
1717
<UserSecretsId>{{add-new-guid}}</UserSecretsId>
1818
<RepositoryType>GIT</RepositoryType>
19-
<RepositoryURL>https://github.com/Kodano/{{repository}}</RepositoryURL>
19+
<RepositoryURL>https://github.com/Company/{{repository}}</RepositoryURL>
2020
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2121
</PropertyGroup>
2222
<ItemGroup>

0 commit comments

Comments
 (0)