Skip to content

Commit 1a619bb

Browse files
grokifyclaude
andcommitted
refactor!: rename module to github.com/plexusone/agentkit
BREAKING CHANGE: Module path changed from github.com/agentplexus/agentkit to github.com/plexusone/agentkit due to organization rename. - Updated all import paths throughout codebase - Updated dependencies to plexusone organization: - github.com/plexusone/opik-go v0.6.0 (renamed from go-opik) - github.com/plexusone/phoenix-go v0.2.0 (renamed from go-phoenix) - github.com/plexusone/omnillm v0.13.0 - github.com/plexusone/omniobserve v0.7.0 - github.com/plexusone/omnivault v0.3.0 - github.com/plexusone/vaultguard v0.3.0 - github.com/plexusone/posture v0.3.0 - Fixed golangci-lint gofmt and gosec warnings - Updated README.md URLs Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 69506b8 commit 1a619bb

File tree

18 files changed

+206
-168
lines changed

18 files changed

+206
-168
lines changed

CHANGELOG.json

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,28 @@
11
{
2-
"ir_version": "1.0",
2+
"irVersion": "1.0",
33
"project": "agentkit",
4-
"repository": "https://github.com/agentplexus/agentkit",
4+
"repository": "https://github.com/plexusone/agentkit",
5+
"versioning": "semver",
6+
"commitConvention": "conventional",
57
"releases": [
8+
{
9+
"version": "v0.5.0",
10+
"date": "2026-03-01",
11+
"highlights": [
12+
{ "description": "Organization rename from agentplexus to plexusone" }
13+
],
14+
"changed": [
15+
{ "description": "**Breaking**: Module path changed from `github.com/agentplexus/agentkit` to `github.com/plexusone/agentkit`" }
16+
],
17+
"dependencies": [
18+
{ "description": "Upgraded `github.com/plexusone/opik-go` to v0.6.0 (renamed from go-opik)" },
19+
{ "description": "Upgraded `github.com/plexusone/phoenix-go` to v0.2.0 (renamed from go-phoenix)" },
20+
{ "description": "Upgraded `github.com/plexusone/omnillm` to v0.12.0" },
21+
{ "description": "Upgraded `github.com/plexusone/omniobserve` to v0.7.0" },
22+
{ "description": "Upgraded `github.com/plexusone/omnivault` to v0.3.0" },
23+
{ "description": "Upgraded `github.com/plexusone/vaultguard` to v0.3.0" }
24+
]
25+
},
626
{
727
"version": "v0.4.0",
828
"date": "2026-02-02",
@@ -62,7 +82,7 @@
6282
{ "description": "IaC configuration package for AgentCore deployments" }
6383
],
6484
"changed": [
65-
{ "description": "Bump `github.com/agentplexus/vaultguard` from 0.1.0 to 0.2.0", "component": "vaultguard", "version": "0.2.0" }
85+
{ "description": "Bump `github.com/agentplexus/vaultguard` from 0.1.0 to 0.2.0" }
6686
]
6787
},
6888
{
@@ -80,7 +100,7 @@
80100
{ "description": "Configuration management utilities" }
81101
],
82102
"changed": [
83-
{ "description": "Bump `github.com/cloudwego/eino` from 0.7.14 to 0.7.15", "component": "eino", "version": "0.7.15" }
103+
{ "description": "Bump `github.com/cloudwego/eino` from 0.7.14 to 0.7.15" }
84104
],
85105
"fixed": [
86106
{ "description": "Remove unused error return from `loadSecureCredentials`" }

CHANGELOG.md

Lines changed: 39 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,30 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
7+
commits follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/),
78
and this changelog is generated by [Structured Changelog](https://github.com/grokify/structured-changelog).
89

910
## [Unreleased]
1011

12+
## [v0.5.0] - 2026-03-01
13+
14+
### Highlights
15+
16+
- Organization rename from agentplexus to plexusone
17+
18+
### Changed
19+
20+
- **Breaking**: Module path changed from `github.com/agentplexus/agentkit` to `github.com/plexusone/agentkit`
21+
22+
### Dependencies
23+
24+
- Upgraded `github.com/plexusone/opik-go` to v0.6.0 (renamed from go-opik)
25+
- Upgraded `github.com/plexusone/phoenix-go` to v0.2.0 (renamed from go-phoenix)
26+
- Upgraded `github.com/plexusone/omnillm` to v0.12.0
27+
- Upgraded `github.com/plexusone/omniobserve` to v0.7.0
28+
- Upgraded `github.com/plexusone/omnivault` to v0.3.0
29+
- Upgraded `github.com/plexusone/vaultguard` to v0.3.0
30+
1131
## [v0.4.0] - 2026-02-02
1232

1333
### Highlights
@@ -17,31 +37,31 @@ and this changelog is generated by [Structured Changelog](https://github.com/gro
1737

1838
### Added
1939

20-
- MCP server implementation with JSON-RPC 2.0 protocol and stdio transport (`mcp/server.go`, `mcp/protocol.go`) ([`cb47e55`](https://github.com/agentplexus/agentkit/commit/cb47e55))
21-
- Local development platform with interactive CLI, file system tools, and bash execution (`platforms/local/`) ([`492b59d`](https://github.com/agentplexus/agentkit/commit/492b59d))
40+
- MCP server implementation with JSON-RPC 2.0 protocol and stdio transport (`mcp/server.go`, `mcp/protocol.go`) ([`cb47e55`](https://github.com/plexusone/agentkit/commit/cb47e55))
41+
- Local development platform with interactive CLI, file system tools, and bash execution (`platforms/local/`) ([`492b59d`](https://github.com/plexusone/agentkit/commit/492b59d))
2242

2343
### Changed
2444

25-
- Update LLM integration for new OmniLLM and OmniObserve APIs ([`b5beda7`](https://github.com/agentplexus/agentkit/commit/b5beda7))
45+
- Update LLM integration for new OmniLLM and OmniObserve APIs ([`b5beda7`](https://github.com/plexusone/agentkit/commit/b5beda7))
2646

2747
### Dependencies
2848

29-
- Upgrade `google.golang.org/adk` 0.3.0 → 0.4.0 ([`784cd47`](https://github.com/agentplexus/agentkit/commit/784cd47))
30-
- Upgrade `github.com/cloudwego/eino` 0.7.17 → 0.7.29 ([`599ece2`](https://github.com/agentplexus/agentkit/commit/599ece2))
31-
- Upgrade `google.golang.org/genai` 1.42.0 → 1.44.0 ([`599ece2`](https://github.com/agentplexus/agentkit/commit/599ece2))
32-
- Upgrade `github.com/a2aproject/a2a-go` 0.3.4 → 0.3.6 ([`599ece2`](https://github.com/agentplexus/agentkit/commit/599ece2))
33-
- Upgrade `github.com/agentplexus/omnivault` 0.2.0 → 0.2.1 ([`34d7309`](https://github.com/agentplexus/agentkit/commit/34d7309))
34-
- Upgrade `github.com/agentplexus/omniobserve` 0.5.0 → 0.5.1 ([`d4b35ca`](https://github.com/agentplexus/agentkit/commit/d4b35ca))
49+
- Upgrade `google.golang.org/adk` 0.3.0 → 0.4.0 ([`784cd47`](https://github.com/plexusone/agentkit/commit/784cd47))
50+
- Upgrade `github.com/cloudwego/eino` 0.7.17 → 0.7.29 ([`599ece2`](https://github.com/plexusone/agentkit/commit/599ece2))
51+
- Upgrade `google.golang.org/genai` 1.42.0 → 1.44.0 ([`599ece2`](https://github.com/plexusone/agentkit/commit/599ece2))
52+
- Upgrade `github.com/a2aproject/a2a-go` 0.3.4 → 0.3.6 ([`599ece2`](https://github.com/plexusone/agentkit/commit/599ece2))
53+
- Upgrade `github.com/agentplexus/omnivault` 0.2.0 → 0.2.1 ([`34d7309`](https://github.com/plexusone/agentkit/commit/34d7309))
54+
- Upgrade `github.com/agentplexus/omniobserve` 0.5.0 → 0.5.1 ([`d4b35ca`](https://github.com/plexusone/agentkit/commit/d4b35ca))
3555

3656
### Documentation
3757

38-
- Update AgentCore platform documentation ([`1a8468c`](https://github.com/agentplexus/agentkit/commit/1a8468c))
39-
- Add SVG icon ([`f7090d4`](https://github.com/agentplexus/agentkit/commit/f7090d4))
40-
- Add icon with transparent background ([`fde15ea`](https://github.com/agentplexus/agentkit/commit/fde15ea))
58+
- Update AgentCore platform documentation ([`1a8468c`](https://github.com/plexusone/agentkit/commit/1a8468c))
59+
- Add SVG icon ([`f7090d4`](https://github.com/plexusone/agentkit/commit/f7090d4))
60+
- Add icon with transparent background ([`fde15ea`](https://github.com/plexusone/agentkit/commit/fde15ea))
4161

4262
### Infrastructure
4363

44-
- Update Go versions in CI workflow ([`607ee24`](https://github.com/agentplexus/agentkit/commit/607ee24))
64+
- Update Go versions in CI workflow ([`607ee24`](https://github.com/plexusone/agentkit/commit/607ee24))
4565

4666
## [v0.3.0] - 2026-01-04
4767

@@ -96,8 +116,9 @@ and this changelog is generated by [Structured Changelog](https://github.com/gro
96116

97117
- Remove unused error return from `loadSecureCredentials`
98118

99-
[unreleased]: https://github.com/agentplexus/agentkit/compare/v0.4.0...HEAD
100-
[v0.4.0]: https://github.com/agentplexus/agentkit/compare/v0.3.0...v0.4.0
101-
[v0.3.0]: https://github.com/agentplexus/agentkit/compare/v0.2.0...v0.3.0
102-
[v0.2.0]: https://github.com/agentplexus/agentkit/compare/v0.1.0...v0.2.0
103-
[v0.1.0]: https://github.com/agentplexus/agentkit/releases/tag/v0.1.0
119+
[unreleased]: https://github.com/plexusone/agentkit/compare/v0.5.0...HEAD
120+
[v0.5.0]: https://github.com/plexusone/agentkit/compare/v0.4.0...v0.5.0
121+
[v0.4.0]: https://github.com/plexusone/agentkit/compare/v0.3.0...v0.4.0
122+
[v0.3.0]: https://github.com/plexusone/agentkit/compare/v0.2.0...v0.3.0
123+
[v0.2.0]: https://github.com/plexusone/agentkit/compare/v0.1.0...v0.2.0
124+
[v0.1.0]: https://github.com/plexusone/agentkit/releases/tag/v0.1.0

README.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ agentkit/
3838
## Installation
3939

4040
```bash
41-
go get github.com/agentplexus/agentkit
41+
go get github.com/plexusone/agentkit
4242
```
4343

4444
## Quick Start
@@ -51,10 +51,10 @@ package main
5151
import (
5252
"context"
5353

54-
"github.com/agentplexus/agentkit/a2a"
55-
"github.com/agentplexus/agentkit/agent"
56-
"github.com/agentplexus/agentkit/config"
57-
"github.com/agentplexus/agentkit/httpserver"
54+
"github.com/plexusone/agentkit/a2a"
55+
"github.com/plexusone/agentkit/agent"
56+
"github.com/plexusone/agentkit/config"
57+
"github.com/plexusone/agentkit/httpserver"
5858
)
5959

6060
func main() {
@@ -89,7 +89,7 @@ func main() {
8989
### A2A Server Factory
9090

9191
```go
92-
import "github.com/agentplexus/agentkit/a2a"
92+
import "github.com/plexusone/agentkit/a2a"
9393

9494
// Create and start A2A server
9595
server, _ := a2a.NewServer(a2a.Config{
@@ -112,7 +112,7 @@ server.Stop(ctx) // Graceful shutdown
112112
### HTTP Server Factory
113113

114114
```go
115-
import "github.com/agentplexus/agentkit/httpserver"
115+
import "github.com/plexusone/agentkit/httpserver"
116116

117117
// Config-based
118118
server, _ := httpserver.New(httpserver.Config{
@@ -139,8 +139,8 @@ server.Start()
139139

140140
```go
141141
import (
142-
"github.com/agentplexus/agentkit/agent"
143-
"github.com/agentplexus/agentkit/config"
142+
"github.com/plexusone/agentkit/agent"
143+
"github.com/plexusone/agentkit/config"
144144
)
145145

146146
cfg := config.LoadConfig()
@@ -177,7 +177,7 @@ log.Printf("Security score: %d", secCfg.SecurityResult().Score)
177177
```go
178178
import (
179179
"github.com/cloudwego/eino/compose"
180-
"github.com/agentplexus/agentkit/orchestration"
180+
"github.com/plexusone/agentkit/orchestration"
181181
)
182182

183183
// Build workflow graph
@@ -221,7 +221,7 @@ AgentKit supports two deployment runtimes:
221221
### Kubernetes Deployment
222222

223223
```go
224-
import "github.com/agentplexus/agentkit/platforms/kubernetes"
224+
import "github.com/plexusone/agentkit/platforms/kubernetes"
225225

226226
// Load and validate Helm values
227227
values, errs := kubernetes.LoadAndValidate("values.yaml")
@@ -270,7 +270,7 @@ vaultguard:
270270
### AWS AgentCore Deployment
271271
272272
```go
273-
import "github.com/agentplexus/agentkit/platforms/agentcore"
273+
import "github.com/plexusone/agentkit/platforms/agentcore"
274274

275275
// Simple setup
276276
server := agentcore.NewBuilder().
@@ -469,15 +469,15 @@ AgentKit has companion modules for Infrastructure-as-Code (IaC) deployment:
469469

470470
| Module | Purpose | Dependencies |
471471
|--------|---------|--------------|
472-
| [agentkit-aws-cdk](https://github.com/agentplexus/agentkit-aws-cdk) | AWS CDK constructs for AgentCore | 21 |
473-
| [agentkit-aws-pulumi](https://github.com/agentplexus/agentkit-aws-pulumi) | Pulumi components for AgentCore | 340 |
472+
| [agentkit-aws-cdk](https://github.com/plexusone/agentkit-aws-cdk) | AWS CDK constructs for AgentCore | 21 |
473+
| [agentkit-aws-pulumi](https://github.com/plexusone/agentkit-aws-pulumi) | Pulumi components for AgentCore | 340 |
474474

475475
All modules share the same YAML/JSON configuration schema from `platforms/agentcore/iac/`.
476476

477477
For pure CloudFormation (no CDK/Pulumi runtime), use the built-in generator:
478478

479479
```go
480-
import "github.com/agentplexus/agentkit/platforms/agentcore/iac"
480+
import "github.com/plexusone/agentkit/platforms/agentcore/iac"
481481

482482
config, _ := iac.LoadStackConfigFromFile("config.yaml")
483483
iac.GenerateCloudFormationFile(config, "template.yaml")
@@ -487,8 +487,8 @@ See [ROADMAP.md](ROADMAP.md) for planned modules including Terraform support.
487487

488488
## Dependencies
489489

490-
- [OmniLLM](https://github.com/agentplexus/omnillm) - Multi-provider LLM abstraction
491-
- [VaultGuard](https://github.com/agentplexus/vaultguard) - Security-gated credentials
490+
- [OmniLLM](https://github.com/plexusone/omnillm) - Multi-provider LLM abstraction
491+
- [VaultGuard](https://github.com/plexusone/vaultguard) - Security-gated credentials
492492
- [Eino](https://github.com/cloudwego/eino) - Graph-based orchestration
493493
- [Google ADK](https://google.golang.org/adk) - Agent Development Kit
494494
- [a2a-go](https://github.com/a2aserver/a2a-go) - A2A protocol implementation
@@ -497,15 +497,15 @@ See [ROADMAP.md](ROADMAP.md) for planned modules including Terraform support.
497497

498498
MIT License
499499

500-
[build-status-svg]: https://github.com/agentplexus/agentkit/actions/workflows/ci.yaml/badge.svg?branch=main
501-
[build-status-url]: https://github.com/agentplexus/agentkit/actions/workflows/ci.yaml
502-
[lint-status-svg]: https://github.com/agentplexus/agentkit/actions/workflows/lint.yaml/badge.svg?branch=main
503-
[lint-status-url]: https://github.com/agentplexus/agentkit/actions/workflows/lint.yaml
504-
[goreport-svg]: https://goreportcard.com/badge/github.com/agentplexus/agentkit
505-
[goreport-url]: https://goreportcard.com/report/github.com/agentplexus/agentkit
506-
[docs-godoc-svg]: https://pkg.go.dev/badge/github.com/agentplexus/agentkit
507-
[docs-godoc-url]: https://pkg.go.dev/github.com/agentplexus/agentkit
500+
[build-status-svg]: https://github.com/plexusone/agentkit/actions/workflows/ci.yaml/badge.svg?branch=main
501+
[build-status-url]: https://github.com/plexusone/agentkit/actions/workflows/ci.yaml
502+
[lint-status-svg]: https://github.com/plexusone/agentkit/actions/workflows/lint.yaml/badge.svg?branch=main
503+
[lint-status-url]: https://github.com/plexusone/agentkit/actions/workflows/lint.yaml
504+
[goreport-svg]: https://goreportcard.com/badge/github.com/plexusone/agentkit
505+
[goreport-url]: https://goreportcard.com/report/github.com/plexusone/agentkit
506+
[docs-godoc-svg]: https://pkg.go.dev/badge/github.com/plexusone/agentkit
507+
[docs-godoc-url]: https://pkg.go.dev/github.com/plexusone/agentkit
508508
[license-svg]: https://img.shields.io/badge/license-MIT-blue.svg
509-
[license-url]: https://github.com/agentplexus/agentkit/blob/master/LICENSE
510-
[used-by-svg]: https://sourcegraph.com/github.com/agentplexus/agentkit/-/badge.svg
511-
[used-by-url]: https://sourcegraph.com/github.com/agentplexus/agentkit?badge
509+
[license-url]: https://github.com/plexusone/agentkit/blob/master/LICENSE
510+
[used-by-svg]: https://sourcegraph.com/github.com/plexusone/agentkit/-/badge.svg
511+
[used-by-url]: https://sourcegraph.com/github.com/plexusone/agentkit?badge

a2a/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ func (s *Server) Start(ctx context.Context) error {
131131
_, _ = w.Write([]byte("OK"))
132132
})
133133

134-
log.Printf("[A2A] %s server starting on %s", s.agent.Name(), s.baseURL.String())
135-
log.Printf("[A2A] Agent Card: %s%s", s.baseURL.String(), a2asrv.WellKnownAgentCardPath)
136-
log.Printf("[A2A] Invoke: %s%s", s.baseURL.String(), s.config.InvokePath)
134+
log.Printf("[A2A] %s server starting on %s", s.agent.Name(), s.baseURL.String()) //nolint:gosec // G706: Server startup log
135+
log.Printf("[A2A] Agent Card: %s%s", s.baseURL.String(), a2asrv.WellKnownAgentCardPath) //nolint:gosec // G706: Server startup log
136+
log.Printf("[A2A] Invoke: %s%s", s.baseURL.String(), s.config.InvokePath) //nolint:gosec // G706: Server startup log
137137

138138
s.httpServer = &http.Server{
139139
Handler: mux,

agent/base.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"google.golang.org/adk/agent"
1313
"google.golang.org/adk/model"
1414

15-
"github.com/agentplexus/agentkit/config"
16-
"github.com/agentplexus/agentkit/llm"
15+
"github.com/plexusone/agentkit/config"
16+
"github.com/plexusone/agentkit/llm"
1717
)
1818

1919
// BaseAgent provides common functionality for all agents.
@@ -94,7 +94,7 @@ func (ba *BaseAgent) FetchURL(ctx context.Context, url string, maxSizeMB int) (s
9494

9595
req.Header.Set("User-Agent", fmt.Sprintf("AgentKit/%s", ba.Name))
9696

97-
resp, err := ba.Client.Do(req)
97+
resp, err := ba.Client.Do(req) //nolint:gosec // G704: URL provided by SDK user
9898
if err != nil {
9999
return "", fmt.Errorf("failed to fetch URL: %w", err)
100100
}

config/omnivault.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"strings"
1010

11-
"github.com/agentplexus/omnivault"
12-
"github.com/agentplexus/omnivault/vault"
11+
"github.com/plexusone/omnivault"
12+
"github.com/plexusone/omnivault/vault"
1313
)
1414

1515
// SecretsProvider specifies the secrets backend to use.

config/secure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/agentplexus/vaultguard"
7+
"github.com/plexusone/vaultguard"
88
)
99

1010
// SecureConfig wraps Config with VaultGuard for secure credential access

0 commit comments

Comments
 (0)