Skip to content

Refactor project name references#601

Open
BechtelCanDoIt wants to merge 1 commit intowso2:mainfrom
BechtelCanDoIt:fix/project-name-refactor
Open

Refactor project name references#601
BechtelCanDoIt wants to merge 1 commit intowso2:mainfrom
BechtelCanDoIt:fix/project-name-refactor

Conversation

@BechtelCanDoIt
Copy link
Copy Markdown

Purpose

Change project refences to the new project name to eliminate the redirect requirement on github from readmes.

Goals

Search and replace old name to new name

Approach

Used:
grep -rlI --exclude-dir=.git "github.com/wso2/ai-agent-management-platform" . \ | xargs sed -i '' 's|github\.com/wso2/ai-agent-management-platform|github.com/wso2/agent-manager|g'

User stories

N/A

Release note

Changed from old project name of ai-agent-management-platform to new name agent-manager.

Documentation

N/A but README.md files were updated along with the code files.

Training

N/A

Certification

N/A

Marketing

N/A

Automation tests

  • Unit tests
    N/A
  • Integration tests
    N/A

Security checks

Samples

N/A

Related PRs

N/A

Migrations (if applicable)

N/A

Test environment

N/A

Learning

N/A

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 20, 2026

Important

Review skipped

Too many files!

This PR contains 169 files, which is 19 over the limit of 150.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 687bffc1-cf78-4a06-83f8-af85d668d0e8

📥 Commits

Reviewing files that changed from the base of the PR and between bff3514 and f50bdd0.

📒 Files selected for processing (169)
  • README.md
  • agent-manager-service/Dockerfile
  • agent-manager-service/api/agent_config_routes.go
  • agent-manager-service/api/agent_routes.go
  • agent-manager-service/api/agent_token_routes.go
  • agent-manager-service/api/app.go
  • agent-manager-service/api/catalog_routes.go
  • agent-manager-service/api/environment_routes.go
  • agent-manager-service/api/evaluator_routes.go
  • agent-manager-service/api/gateway_internal_routes.go
  • agent-manager-service/api/gateway_routes.go
  • agent-manager-service/api/health_check_routes.go
  • agent-manager-service/api/infra_resource_routes.go
  • agent-manager-service/api/llm_deployment_routes.go
  • agent-manager-service/api/llm_provider_apikey_routes.go
  • agent-manager-service/api/llm_proxy_apikey_routes.go
  • agent-manager-service/api/llm_proxy_deployment_routes.go
  • agent-manager-service/api/llm_routes.go
  • agent-manager-service/api/monitor_publisher_routes.go
  • agent-manager-service/api/monitor_routes.go
  • agent-manager-service/api/observability_routes.go
  • agent-manager-service/api/repository_routes.go
  • agent-manager-service/api/websocket_routes.go
  • agent-manager-service/catalog/builtin_evaluators.go
  • agent-manager-service/catalog/catalog.go
  • agent-manager-service/clients/clientmocks/observability_client_fake.go
  • agent-manager-service/clients/clientmocks/openchoreo_client_fake.go
  • agent-manager-service/clients/clientmocks/secret_mgmt_client_fake.go
  • agent-manager-service/clients/clientmocks/trace_observer_client_fake.go
  • agent-manager-service/clients/gitprovider/github.go
  • agent-manager-service/clients/observabilitysvc/client.go
  • agent-manager-service/clients/openchoreosvc/auth/auth.go
  • agent-manager-service/clients/openchoreosvc/client/builds.go
  • agent-manager-service/clients/openchoreosvc/client/client.go
  • agent-manager-service/clients/openchoreosvc/client/components.go
  • agent-manager-service/clients/openchoreosvc/client/deployments.go
  • agent-manager-service/clients/openchoreosvc/client/errors.go
  • agent-manager-service/clients/openchoreosvc/client/generic-workflows.go
  • agent-manager-service/clients/openchoreosvc/client/infrastructure.go
  • agent-manager-service/clients/openchoreosvc/client/projects.go
  • agent-manager-service/clients/openchoreosvc/client/secret_references.go
  • agent-manager-service/clients/requests/send_request.go
  • agent-manager-service/clients/secretmanagersvc/providers/openbao/client.go
  • agent-manager-service/clients/secretmanagersvc/providers/openbao/provider.go
  • agent-manager-service/clients/traceobserversvc/client.go
  • agent-manager-service/controllers/agent_configuration_controller.go
  • agent-manager-service/controllers/agent_controller.go
  • agent-manager-service/controllers/agent_token_controller.go
  • agent-manager-service/controllers/catalog_controller.go
  • agent-manager-service/controllers/environment_controller.go
  • agent-manager-service/controllers/evaluator_controller.go
  • agent-manager-service/controllers/gateway_controller.go
  • agent-manager-service/controllers/gateway_internal_controller.go
  • agent-manager-service/controllers/infra_resource_controller.go
  • agent-manager-service/controllers/llm_controller.go
  • agent-manager-service/controllers/llm_deployment_controller.go
  • agent-manager-service/controllers/llm_provider_apikey_controller.go
  • agent-manager-service/controllers/llm_proxy_apikey_controller.go
  • agent-manager-service/controllers/llm_proxy_deployment_controller.go
  • agent-manager-service/controllers/monitor_controller.go
  • agent-manager-service/controllers/monitor_scores_controller.go
  • agent-manager-service/controllers/monitor_scores_publisher_controller.go
  • agent-manager-service/controllers/observability_controller.go
  • agent-manager-service/controllers/repository_controller.go
  • agent-manager-service/controllers/websocket_controller.go
  • agent-manager-service/db/db.go
  • agent-manager-service/db/tx_utils.go
  • agent-manager-service/db_migrations/migrations.go
  • agent-manager-service/go.mod
  • agent-manager-service/main.go
  • agent-manager-service/middleware/correlation_id.go
  • agent-manager-service/middleware/jwtassertion/auth.go
  • agent-manager-service/middleware/logger/request_logger.go
  • agent-manager-service/middleware/panic_recover.go
  • agent-manager-service/middleware/path_params.go
  • agent-manager-service/models/traces.go
  • agent-manager-service/repositories/agent_config_repository.go
  • agent-manager-service/repositories/agent_configuration_repository.go
  • agent-manager-service/repositories/agent_env_config_variable_repository.go
  • agent-manager-service/repositories/artifact_repository.go
  • agent-manager-service/repositories/catalog_repository.go
  • agent-manager-service/repositories/custom_evaluator_repository.go
  • agent-manager-service/repositories/deployment_repository.go
  • agent-manager-service/repositories/env_agent_model_mapping_repository.go
  • agent-manager-service/repositories/evaluation_score_repository.go
  • agent-manager-service/repositories/gateway_repository.go
  • agent-manager-service/repositories/llm_provider_repository.go
  • agent-manager-service/repositories/llm_provider_template_repository.go
  • agent-manager-service/repositories/llm_proxy_repository.go
  • agent-manager-service/repositories/monitor_repository.go
  • agent-manager-service/resources/builtin_llm_templates.go
  • agent-manager-service/scripts/fmt.sh
  • agent-manager-service/scripts/generate-builtin-evaluators.sh
  • agent-manager-service/server/internal_server.go
  • agent-manager-service/services/agent_configuration_service.go
  • agent-manager-service/services/agent_manager.go
  • agent-manager-service/services/agent_token_manager.go
  • agent-manager-service/services/apikey_broadcaster.go
  • agent-manager-service/services/catalog_service.go
  • agent-manager-service/services/deployment_service.go
  • agent-manager-service/services/environment_service.go
  • agent-manager-service/services/evaluator_manager.go
  • agent-manager-service/services/gateway_events_service.go
  • agent-manager-service/services/gateway_internal_service.go
  • agent-manager-service/services/infra_resource_manager.go
  • agent-manager-service/services/llm_deployment_service.go
  • agent-manager-service/services/llm_deployment_service_test.go
  • agent-manager-service/services/llm_provider_apikey_service.go
  • agent-manager-service/services/llm_provider_service.go
  • agent-manager-service/services/llm_provider_template_service.go
  • agent-manager-service/services/llm_proxy_apikey_service.go
  • agent-manager-service/services/llm_proxy_deployment_service.go
  • agent-manager-service/services/llm_proxy_deployment_service_test.go
  • agent-manager-service/services/llm_proxy_service.go
  • agent-manager-service/services/llm_template_seeder.go
  • agent-manager-service/services/llm_template_store.go
  • agent-manager-service/services/monitor_executor.go
  • agent-manager-service/services/monitor_manager.go
  • agent-manager-service/services/monitor_scheduler.go
  • agent-manager-service/services/monitor_scheduler_test.go
  • agent-manager-service/services/monitor_scores_service.go
  • agent-manager-service/services/observability_manager.go
  • agent-manager-service/services/platform_gateway_service.go
  • agent-manager-service/services/repository_service.go
  • agent-manager-service/services/token_cache.go
  • agent-manager-service/tests/agent_token_test.go
  • agent-manager-service/tests/apitestutils/mock_clients.go
  • agent-manager-service/tests/apitestutils/test_utils.go
  • agent-manager-service/tests/application_logs_test.go
  • agent-manager-service/tests/build_agent_test.go
  • agent-manager-service/tests/build_logs_test.go
  • agent-manager-service/tests/create_agent_test.go
  • agent-manager-service/tests/create_external_agent_test.go
  • agent-manager-service/tests/create_project_test.go
  • agent-manager-service/tests/delete_agent_test.go
  • agent-manager-service/tests/delete_project_test.go
  • agent-manager-service/tests/deploy_agent_test.go
  • agent-manager-service/tests/evaluator_test.go
  • agent-manager-service/tests/get_trace_test.go
  • agent-manager-service/tests/list_traces_test.go
  • agent-manager-service/tests/monitor_executor_test.go
  • agent-manager-service/tests/monitor_scores_test.go
  • agent-manager-service/tests/monitor_test.go
  • agent-manager-service/tests/score_repository_test.go
  • agent-manager-service/utils/crypto.go
  • agent-manager-service/utils/llm_template_loader.go
  • agent-manager-service/utils/makeresults.go
  • agent-manager-service/utils/spec_converter.go
  • agent-manager-service/utils/utils.go
  • agent-manager-service/wiring/params.go
  • agent-manager-service/wiring/wire.go
  • agent-manager-service/wiring/wire_gen.go
  • deployments/helm-charts/wso2-amp-platform-resources-extension/Chart.yaml
  • deployments/helm-charts/wso2-amp-secrets-extension/Chart.yaml
  • documentation/README.md
  • documentation/versioned_docs/version-v0.3.0/components/amp-instrumentation.md
  • documentation/versioned_docs/version-v0.3.0/getting-started/single-cluster-installation.md
  • documentation/versioned_docs/version-v0.3.0/overview/what-is-amp.md
  • documentation/versioned_docs/version-v0.4.0/components/amp-instrumentation.md
  • documentation/versioned_docs/version-v0.4.0/overview/what-is-amp.md
  • evaluation-job/Dockerfile
  • evaluation-job/Dockerfile.dev
  • libs/amp-evaluation/pyproject.toml
  • samples/customer-support-agent/README.md
  • traces-observer-service/controllers/controller.go
  • traces-observer-service/go.mod
  • traces-observer-service/handlers/handlers.go
  • traces-observer-service/main.go
  • traces-observer-service/opensearch/client.go

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
📝 Coding Plan
  • Generate coding plan for human review comments

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Tip

CodeRabbit can generate a title for your PR based on the changes with custom instructions.

Set the reviews.auto_title_instructions setting to generate a title for your PR based on the changes in the PR with custom instructions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant