Skip to content

Commit 53bc631

Browse files
Rename all namespaces from AgentRegistry.* to MarimerLLC.AgentRegistry.*
Adds the MarimerLLC company prefix to every namespace and using directive across all 76 source and test files, and sets RootNamespace in each .csproj so new files default to the correct namespace. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0d0864a commit 53bc631

76 files changed

Lines changed: 197 additions & 187 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/AgentRegistry.Api/AgentRegistry.Api.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<UserSecretsId>agentregistry-api-dev</UserSecretsId>
5+
<RootNamespace>MarimerLLC.AgentRegistry.Api</RootNamespace>
56
</PropertyGroup>
67

78
<ItemGroup>

src/AgentRegistry.Api/Agents/AgentEndpoints.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System.Security.Claims;
2-
using AgentRegistry.Api.Agents.Models;
3-
using AgentRegistry.Api.Auth;
4-
using AgentRegistry.Application;
5-
using AgentRegistry.Application.Agents;
6-
using AgentRegistry.Domain.Agents;
2+
using MarimerLLC.AgentRegistry.Api.Agents.Models;
3+
using MarimerLLC.AgentRegistry.Api.Auth;
4+
using MarimerLLC.AgentRegistry.Application;
5+
using MarimerLLC.AgentRegistry.Application.Agents;
6+
using MarimerLLC.AgentRegistry.Domain.Agents;
77

8-
namespace AgentRegistry.Api.Agents;
8+
namespace MarimerLLC.AgentRegistry.Api.Agents;
99

1010
public static class AgentEndpoints
1111
{

src/AgentRegistry.Api/Agents/DiscoveryEndpoints.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using AgentRegistry.Api.Agents.Models;
2-
using AgentRegistry.Application.Agents;
3-
using AgentRegistry.Domain.Agents;
1+
using MarimerLLC.AgentRegistry.Api.Agents.Models;
2+
using MarimerLLC.AgentRegistry.Application.Agents;
3+
using MarimerLLC.AgentRegistry.Domain.Agents;
44

5-
namespace AgentRegistry.Api.Agents;
5+
namespace MarimerLLC.AgentRegistry.Api.Agents;
66

77
public static class DiscoveryEndpoints
88
{

src/AgentRegistry.Api/Agents/Models/AgentResponse.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using AgentRegistry.Application.Agents;
2-
using DomainEndpoint = AgentRegistry.Domain.Agents.Endpoint;
3-
using AgentRegistry.Domain.Agents;
1+
using MarimerLLC.AgentRegistry.Application.Agents;
2+
using DomainEndpoint = MarimerLLC.AgentRegistry.Domain.Agents.Endpoint;
3+
using MarimerLLC.AgentRegistry.Domain.Agents;
44

5-
namespace AgentRegistry.Api.Agents.Models;
5+
namespace MarimerLLC.AgentRegistry.Api.Agents.Models;
66

77
public record AgentResponse(
88
string Id,

src/AgentRegistry.Api/Agents/Models/RegisterAgentRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using AgentRegistry.Domain.Agents;
1+
using MarimerLLC.AgentRegistry.Domain.Agents;
22

3-
namespace AgentRegistry.Api.Agents.Models;
3+
namespace MarimerLLC.AgentRegistry.Api.Agents.Models;
44

55
public record RegisterAgentRequest(
66
string Name,

src/AgentRegistry.Api/ApiKeys/ApiKeyEndpoints.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
using System.Security.Claims;
2-
using AgentRegistry.Api.ApiKeys.Models;
3-
using AgentRegistry.Api.Auth;
4-
using AgentRegistry.Application;
5-
using AgentRegistry.Application.Auth;
6-
using AgentRegistry.Domain.ApiKeys;
2+
using MarimerLLC.AgentRegistry.Api.ApiKeys.Models;
3+
using MarimerLLC.AgentRegistry.Api.Auth;
4+
using MarimerLLC.AgentRegistry.Application;
5+
using MarimerLLC.AgentRegistry.Application.Auth;
6+
using MarimerLLC.AgentRegistry.Domain.ApiKeys;
77
using Microsoft.AspNetCore.Mvc;
88

9-
namespace AgentRegistry.Api.ApiKeys;
9+
namespace MarimerLLC.AgentRegistry.Api.ApiKeys;
1010

1111
public static class ApiKeyEndpoints
1212
{

src/AgentRegistry.Api/ApiKeys/Models/ApiKeyModels.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using AgentRegistry.Application.Auth;
2-
using AgentRegistry.Domain.ApiKeys;
1+
using MarimerLLC.AgentRegistry.Application.Auth;
2+
using MarimerLLC.AgentRegistry.Domain.ApiKeys;
33

4-
namespace AgentRegistry.Api.ApiKeys.Models;
4+
namespace MarimerLLC.AgentRegistry.Api.ApiKeys.Models;
55

66
public record IssueApiKeyRequest(string? Description, ApiKeyScope Scope = ApiKeyScope.Agent);
77

src/AgentRegistry.Api/Auth/ApiKeyAuthenticationHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System.Security.Claims;
22
using System.Text.Encodings.Web;
3-
using AgentRegistry.Application.Auth;
3+
using MarimerLLC.AgentRegistry.Application.Auth;
44
using Microsoft.AspNetCore.Authentication;
55
using Microsoft.Extensions.Options;
66

7-
namespace AgentRegistry.Api.Auth;
7+
namespace MarimerLLC.AgentRegistry.Api.Auth;
88

99
public class ApiKeyAuthenticationOptions : AuthenticationSchemeOptions
1010
{

src/AgentRegistry.Api/Auth/RegistryClaims.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using AgentRegistry.Domain.ApiKeys;
1+
using MarimerLLC.AgentRegistry.Domain.ApiKeys;
22

3-
namespace AgentRegistry.Api.Auth;
3+
namespace MarimerLLC.AgentRegistry.Api.Auth;
44

55
/// <summary>Claim type and value constants used across the registry's authorization policies.</summary>
66
public static class RegistryClaims

src/AgentRegistry.Api/Auth/RegistryPolicies.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.AspNetCore.Authorization;
22

3-
namespace AgentRegistry.Api.Auth;
3+
namespace MarimerLLC.AgentRegistry.Api.Auth;
44

55
public static class RegistryPolicies
66
{

0 commit comments

Comments
 (0)