├── .cursorrules ├── .dockerignore ├── .env.example ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── dependabot.yml ├── linters │ ├── .markdownlint.yml │ └── .yamllint.yml ├── pull_request_template.md ├── test-build-locally.sh ├── verify-setup.sh └── workflows │ ├── README.md │ ├── _stale.yml │ ├── ci-a2a-rag.yml │ ├── ci-a2a-sub-agent.yml │ ├── ci-agent-forge-plugin.yml │ ├── ci-mcp-sub-agent.yml │ ├── ci-supervisor-agent.yml │ ├── conventional_commits.yml │ ├── helm-chart-test.yml │ ├── helm-pre-release.yml │ ├── helm.yml │ ├── lint.yml │ ├── pre-release-a2a-rag.yml │ ├── pre-release-a2a-sub-agent.yaml │ ├── pre-release-agent-forge-plugin.yaml │ ├── pre-release-mcp-agent.yaml │ ├── pre-release-supervisor-agent.yaml │ ├── publish-gh-pages.yml │ ├── stale.yml │ ├── superlinter.yml │ ├── tests-detailed-sanity-integration.yml │ ├── tests-quick-sanity-integration-dev.yml │ ├── tests-quick-sanity-integration-on-latest-tag.yml │ ├── tests-quick-sanity-integration-on-stable-tag.yml │ └── tests-unit-tests.yml ├── .gitignore ├── .gitleaksignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── SECURITY.md ├── ai_platform_engineering ├── __init__.py ├── agents │ ├── README.md │ ├── argocd │ │ ├── .dockerignore │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── [internal] │ │ ├── __init__.py │ │ ├── agent_argocd │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ ├── agent_executor.py │ │ │ │ │ └── helpers.py │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── eval_strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── langgraph.json │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_argocd │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── mcp_client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── applications.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── log_models.py │ │ │ │ ├── server.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api_v1_account.py │ │ │ │ │ ├── api_v1_account_can_i_resource_action_subresource.py │ │ │ │ │ ├── api_v1_account_name.py │ │ │ │ │ ├── api_v1_account_name_token.py │ │ │ │ │ ├── api_v1_account_name_token_id.py │ │ │ │ │ ├── api_v1_account_password.py │ │ │ │ │ ├── api_v1_applications.py │ │ │ │ │ ├── api_v1_applications_application_name_managed_resources.py │ │ │ │ │ ├── api_v1_applications_application_name_resource_tree.py │ │ │ │ │ ├── api_v1_applications_name_events.py │ │ │ │ │ ├── api_v1_applications_name_links.py │ │ │ │ │ ├── api_v1_applications_name_logs.py │ │ │ │ │ ├── api_v1_applicationsets.py │ │ │ │ │ ├── api_v1_applicationsets_generate.py │ │ │ │ │ ├── api_v1_applicationsets_name.py │ │ │ │ │ ├── api_v1_certificates.py │ │ │ │ │ ├── api_v1_clusters.py │ │ │ │ │ ├── api_v1_clusters_id_value.py │ │ │ │ │ ├── api_v1_clusters_id_value_invalidate_cache.py │ │ │ │ │ ├── api_v1_clusters_id_value_rotate_auth.py │ │ │ │ │ ├── api_v1_gpgkeys.py │ │ │ │ │ ├── api_v1_gpgkeys_keyid.py │ │ │ │ │ ├── api_v1_notifications_services.py │ │ │ │ │ ├── api_v1_notifications_templates.py │ │ │ │ │ ├── api_v1_notifications_triggers.py │ │ │ │ │ ├── api_v1_projects.py │ │ │ │ │ ├── api_v1_projects_name.py │ │ │ │ │ ├── api_v1_projects_name_detailed.py │ │ │ │ │ ├── api_v1_projects_name_events.py │ │ │ │ │ ├── api_v1_projects_name_globalprojects.py │ │ │ │ │ ├── api_v1_projects_name_links.py │ │ │ │ │ ├── api_v1_projects_name_syncwindows.py │ │ │ │ │ ├── api_v1_projects_project_metadata_name.py │ │ │ │ │ ├── api_v1_projects_project_roles_role_token.py │ │ │ │ │ ├── api_v1_projects_project_roles_role_token_iat.py │ │ │ │ │ ├── api_v1_repocreds.py │ │ │ │ │ ├── api_v1_repocreds_creds_url.py │ │ │ │ │ ├── api_v1_repocreds_url.py │ │ │ │ │ ├── api_v1_repositories.py │ │ │ │ │ ├── api_v1_repositories_repo.py │ │ │ │ │ ├── api_v1_repositories_repo_apps.py │ │ │ │ │ ├── api_v1_repositories_repo_helmcharts.py │ │ │ │ │ ├── api_v1_repositories_repo_refs.py │ │ │ │ │ ├── api_v1_repositories_repo_repo.py │ │ │ │ │ ├── api_v1_repositories_repo_validate.py │ │ │ │ │ ├── api_v1_repositories_source_repo_url_appdetails.py │ │ │ │ │ ├── api_v1_repositories_source_repourl_appdetails.py │ │ │ │ │ ├── api_v1_session.py │ │ │ │ │ ├── api_v1_session_userinfo.py │ │ │ │ │ ├── api_v1_settings.py │ │ │ │ │ ├── api_v1_settings_plugins.py │ │ │ │ │ ├── api_v1_stream_applications.py │ │ │ │ │ ├── api_v1_stream_applications_application_name_resource_tree.py │ │ │ │ │ ├── api_v1_stream_applications_applicationname_resource_tree.py │ │ │ │ │ ├── api_v1_write_repocreds.py │ │ │ │ │ ├── api_v1_write_repocreds_creds_url.py │ │ │ │ │ ├── api_v1_write_repocreds_url.py │ │ │ │ │ ├── api_v1_write_repositories.py │ │ │ │ │ ├── api_v1_write_repositories_repo.py │ │ │ │ │ ├── api_v1_write_repositories_repo_repo.py │ │ │ │ │ ├── api_v1_write_repositories_repo_validate.py │ │ │ │ │ ├── api_version.py │ │ │ │ │ ├── search.py │ │ │ │ │ └── unused │ │ │ │ │ ├── api_v1_applications_application_metadata_name.py │ │ │ │ │ ├── api_v1_applications_manifestswithfiles.py │ │ │ │ │ ├── api_v1_applications_name.py │ │ │ │ │ ├── api_v1_applications_name_manifests.py │ │ │ │ │ ├── api_v1_applications_name_operation.py │ │ │ │ │ ├── api_v1_applications_name_pods_podname_logs.py │ │ │ │ │ ├── api_v1_applications_name_resource.py │ │ │ │ │ ├── api_v1_applications_name_resource_actions.py │ │ │ │ │ ├── api_v1_applications_name_resource_links.py │ │ │ │ │ ├── api_v1_applications_name_revisions_revision_chartdetails.py │ │ │ │ │ ├── api_v1_applications_name_revisions_revision_metadata.py │ │ │ │ │ ├── api_v1_applications_name_rollback.py │ │ │ │ │ ├── api_v1_applications_name_spec.py │ │ │ │ │ ├── api_v1_applications_name_sync.py │ │ │ │ │ ├── api_v1_applications_name_syncwindows.py │ │ │ │ │ └── api_v1_applicationsets_name_resource_tree.py │ │ │ ├── pyproject.toml │ │ │ ├── tests │ │ │ │ ├── README.md │ │ │ │ ├── run_all_tests.py │ │ │ │ ├── test_api_client.py │ │ │ │ ├── test_api_debug_functionality.py │ │ │ │ ├── test_api_version.py │ │ │ │ ├── test_applications_filter.py │ │ │ │ ├── test_applications_none_handling.py │ │ │ │ └── test_projects.py │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_agent.py │ ├── atlassian │ │ └── README.md │ ├── aws │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_aws │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agent.py │ │ │ ├── agent_langgraph.py │ │ │ ├── models.py │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── agent_executor.py │ │ │ └── state.py │ │ ├── build │ │ │ └── Dockerfile.a2a │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ └── strict_match_dataset.yaml │ │ ├── pyproject.toml │ │ ├── requirements.txt │ │ └── uv.lock │ ├── backstage │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent_backstage │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ └── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ ├── helpers.py │ │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_backstage │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyze_location_entity_field.py │ │ │ │ │ ├── analyze_location_existing_entity.py │ │ │ │ │ ├── analyze_location_generate_entity.py │ │ │ │ │ ├── analyze_location_response.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── entities_batch_response.py │ │ │ │ │ ├── entities_query_response.py │ │ │ │ │ ├── entity.py │ │ │ │ │ ├── entity_ancestry_response.py │ │ │ │ │ ├── entity_facet.py │ │ │ │ │ ├── entity_facets_response.py │ │ │ │ │ ├── entity_link.py │ │ │ │ │ ├── entity_meta.py │ │ │ │ │ ├── entity_relation.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── json_object.py │ │ │ │ │ ├── location.py │ │ │ │ │ ├── location_input.py │ │ │ │ │ ├── location_spec.py │ │ │ │ │ ├── map_string_string.py │ │ │ │ │ ├── nullable_entity.py │ │ │ │ │ ├── recursive_partial_entity.py │ │ │ │ │ ├── recursive_partial_entity_meta.py │ │ │ │ │ └── recursive_partial_entity_relation.py │ │ │ │ ├── server.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analyze_location.py │ │ │ │ │ ├── entities.py │ │ │ │ │ ├── entities_by_name_kind_namespace_name.py │ │ │ │ │ ├── entities_by_name_kind_namespace_name_ancestry.py │ │ │ │ │ ├── entities_by_query.py │ │ │ │ │ ├── entities_by_refs.py │ │ │ │ │ ├── entities_by_uid_uid.py │ │ │ │ │ ├── entity_facets.py │ │ │ │ │ ├── locations.py │ │ │ │ │ ├── locations_by_entity_kind_namespace_name.py │ │ │ │ │ ├── locations_id.py │ │ │ │ │ ├── refresh.py │ │ │ │ │ ├── techdocs_content.py │ │ │ │ │ ├── techdocs_index.py │ │ │ │ │ ├── techdocs_metadata.py │ │ │ │ │ └── validate_entity.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_agent.py │ │ └── uv.lock │ ├── common.mk │ ├── confluence │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_confluence │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ ├── models.py │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ ├── agent_executor.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── state.py │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_confluence │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── abstract_page_links.py │ │ │ │ │ ├── account_status.py │ │ │ │ │ ├── account_type.py │ │ │ │ │ ├── admin_key_response.py │ │ │ │ │ ├── ancestor.py │ │ │ │ │ ├── ancestor_type.py │ │ │ │ │ ├── attachment_bulk.py │ │ │ │ │ ├── attachment_comment_model.py │ │ │ │ │ ├── attachment_links.py │ │ │ │ │ ├── attachment_single.py │ │ │ │ │ ├── attachment_sort_order.py │ │ │ │ │ ├── attachment_version.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── blog_post_body_write.py │ │ │ │ │ ├── blog_post_bulk.py │ │ │ │ │ ├── blog_post_comment_model.py │ │ │ │ │ ├── blog_post_content_status.py │ │ │ │ │ ├── blog_post_inline_comment_model.py │ │ │ │ │ ├── blog_post_nested_body_write.py │ │ │ │ │ ├── blog_post_single.py │ │ │ │ │ ├── blog_post_sort_order.py │ │ │ │ │ ├── blog_post_version.py │ │ │ │ │ ├── body_bulk.py │ │ │ │ │ ├── body_single.py │ │ │ │ │ ├── body_type.py │ │ │ │ │ ├── child_custom_content.py │ │ │ │ │ ├── child_custom_content_sort_order.py │ │ │ │ │ ├── child_page.py │ │ │ │ │ ├── child_page_sort_order.py │ │ │ │ │ ├── children_comment_model.py │ │ │ │ │ ├── children_response.py │ │ │ │ │ ├── classification_level.py │ │ │ │ │ ├── classification_level_color.py │ │ │ │ │ ├── classification_level_status.py │ │ │ │ │ ├── comment_body_write.py │ │ │ │ │ ├── comment_links.py │ │ │ │ │ ├── comment_nested_body_write.py │ │ │ │ │ ├── comment_sort_order.py │ │ │ │ │ ├── comment_version.py │ │ │ │ │ ├── content_id_to_content_type_response.py │ │ │ │ │ ├── content_property.py │ │ │ │ │ ├── content_property_create_request.py │ │ │ │ │ ├── content_property_sort_order.py │ │ │ │ │ ├── content_property_update_request.py │ │ │ │ │ ├── content_sort_order.py │ │ │ │ │ ├── content_status.py │ │ │ │ │ ├── create_footer_comment_model.py │ │ │ │ │ ├── create_inline_comment_model.py │ │ │ │ │ ├── custom_content_body_bulk.py │ │ │ │ │ ├── custom_content_body_representation.py │ │ │ │ │ ├── custom_content_body_representation_single.py │ │ │ │ │ ├── custom_content_body_single.py │ │ │ │ │ ├── custom_content_body_write.py │ │ │ │ │ ├── custom_content_bulk.py │ │ │ │ │ ├── custom_content_comment_model.py │ │ │ │ │ ├── custom_content_links.py │ │ │ │ │ ├── custom_content_nested_body_write.py │ │ │ │ │ ├── custom_content_single.py │ │ │ │ │ ├── custom_content_sort_order.py │ │ │ │ │ ├── custom_content_version.py │ │ │ │ │ ├── data_policy_metadata.py │ │ │ │ │ ├── data_policy_space.py │ │ │ │ │ ├── database_links.py │ │ │ │ │ ├── database_single.py │ │ │ │ │ ├── descendants_response.py │ │ │ │ │ ├── detailed_version.py │ │ │ │ │ ├── folder_links.py │ │ │ │ │ ├── folder_single.py │ │ │ │ │ ├── footer_comment_model.py │ │ │ │ │ ├── icon.py │ │ │ │ │ ├── inline_comment_children_model.py │ │ │ │ │ ├── inline_comment_model.py │ │ │ │ │ ├── inline_comment_properties.py │ │ │ │ │ ├── inline_comment_resolution_status.py │ │ │ │ │ ├── label.py │ │ │ │ │ ├── label_sort_order.py │ │ │ │ │ ├── like.py │ │ │ │ │ ├── multi_entity_links.py │ │ │ │ │ ├── only_archived_and_current_content_status.py │ │ │ │ │ ├── operation.py │ │ │ │ │ ├── optional_field_links.py │ │ │ │ │ ├── optional_field_meta.py │ │ │ │ │ ├── page_body_write.py │ │ │ │ │ ├── page_bulk.py │ │ │ │ │ ├── page_comment_model.py │ │ │ │ │ ├── page_inline_comment_model.py │ │ │ │ │ ├── page_nested_body_write.py │ │ │ │ │ ├── page_single.py │ │ │ │ │ ├── page_sort_order.py │ │ │ │ │ ├── page_version.py │ │ │ │ │ ├── parent_content_type.py │ │ │ │ │ ├── permitted_operations_response.py │ │ │ │ │ ├── primary_body_representation.py │ │ │ │ │ ├── primary_body_representation_single.py │ │ │ │ │ ├── principal.py │ │ │ │ │ ├── principal_type.py │ │ │ │ │ ├── role_type.py │ │ │ │ │ ├── smart_link_links.py │ │ │ │ │ ├── smart_link_single.py │ │ │ │ │ ├── space_bulk.py │ │ │ │ │ ├── space_description.py │ │ │ │ │ ├── space_description_body_representation.py │ │ │ │ │ ├── space_icon.py │ │ │ │ │ ├── space_links.py │ │ │ │ │ ├── space_permission.py │ │ │ │ │ ├── space_permission_assignment.py │ │ │ │ │ ├── space_property.py │ │ │ │ │ ├── space_property_create_request.py │ │ │ │ │ ├── space_property_update_request.py │ │ │ │ │ ├── space_role.py │ │ │ │ │ ├── space_role_assignment.py │ │ │ │ │ ├── space_single.py │ │ │ │ │ ├── space_sort_order.py │ │ │ │ │ ├── space_status.py │ │ │ │ │ ├── space_type.py │ │ │ │ │ ├── task.py │ │ │ │ │ ├── task_body_single.py │ │ │ │ │ ├── update_footer_comment_model.py │ │ │ │ │ ├── update_inline_comment_model.py │ │ │ │ │ ├── user.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── version_sort_order.py │ │ │ │ │ ├── versioned_entity.py │ │ │ │ │ ├── whiteboard_links.py │ │ │ │ │ └── whiteboard_single.py │ │ │ │ ├── server.py │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attachments.py │ │ │ │ │ ├── blogposts.py │ │ │ │ │ ├── footer_comments.py │ │ │ │ │ ├── inline_comments.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── pages.py │ │ │ │ │ ├── space_permissions.py │ │ │ │ │ └── spaces.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── tools.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── github │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── mcp.json │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent_github │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ └── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ ├── helpers.py │ │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── langgraph.json │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_stub.py │ │ └── uv.lock │ ├── jira │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_jira │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ ├── models.py │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ ├── agent_executor.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── state.py │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_jira │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ └── client.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── constants.py │ │ │ │ │ └── jira │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── agile.py │ │ │ │ │ │ ├── comment.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── issue.py │ │ │ │ │ │ ├── link.py │ │ │ │ │ │ ├── project.py │ │ │ │ │ │ ├── search.py │ │ │ │ │ │ ├── workflow.py │ │ │ │ │ │ └── worklog.py │ │ │ │ ├── pyproject.toml │ │ │ │ ├── server.py │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── jira │ │ │ │ │ │ ├── attachments.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── issues.py │ │ │ │ │ │ ├── links.py │ │ │ │ │ │ ├── protocols.py │ │ │ │ │ │ ├── search.py │ │ │ │ │ │ ├── transitions.py │ │ │ │ │ │ ├── users.py │ │ │ │ │ │ └── worklog.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── date.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── io.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── oauth.py │ │ │ │ │ ├── oauth_setup.py │ │ │ │ │ ├── ssl.py │ │ │ │ │ ├── tools.py │ │ │ │ │ └── urls.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_stub.py │ │ └── uv.lock │ ├── komodor │ │ ├── .dockerignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent_komodor │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ ├── models.py │ │ │ ├── protocol_bindings │ │ │ │ └── a2a_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ └── agent_executor.py │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── langgraph.json │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_komodor │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action.py │ │ │ │ │ ├── action_result.py │ │ │ │ │ ├── action_state.py │ │ │ │ │ ├── action_type.py │ │ │ │ │ ├── api_deprecations_supporting_data.py │ │ │ │ │ ├── api_key_validation_response.py │ │ │ │ │ ├── apply_protocol.py │ │ │ │ │ ├── audit_log.py │ │ │ │ │ ├── audit_log_category.py │ │ │ │ │ ├── audit_log_filters.py │ │ │ │ │ ├── audit_log_operation.py │ │ │ │ │ ├── audit_log_status.py │ │ │ │ │ ├── autoscaler_kind.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── basic_violation.py │ │ │ │ │ ├── cascading_failure_supporting_data.py │ │ │ │ │ ├── certificate_expiration_data.py │ │ │ │ │ ├── certificate_expiration_supporting_data.py │ │ │ │ │ ├── check_category.py │ │ │ │ │ ├── check_type.py │ │ │ │ │ ├── cluster_provider_type.py │ │ │ │ │ ├── cluster_scope.py │ │ │ │ │ ├── cluster_scope_wrapper.py │ │ │ │ │ ├── clusters_data.py │ │ │ │ │ ├── clusters_response.py │ │ │ │ │ ├── configuration_sensor.py │ │ │ │ │ ├── configuration_variables.py │ │ │ │ │ ├── container_restarts_supporting_data.py │ │ │ │ │ ├── container_usage_request_data.py │ │ │ │ │ ├── correlated_issue_supporting_data.py │ │ │ │ │ ├── cost_allocation_response.py │ │ │ │ │ ├── cost_allocation_stats_response.py │ │ │ │ │ ├── cost_allocation_summary_row.py │ │ │ │ │ ├── cost_pagination_response.py │ │ │ │ │ ├── cost_right_sizing_per_container_response.py │ │ │ │ │ ├── cost_right_sizing_per_service_response.py │ │ │ │ │ ├── cost_right_sizing_summary.py │ │ │ │ │ ├── create_cluster_dto.py │ │ │ │ │ ├── create_cluster_response.py │ │ │ │ │ ├── create_custom_action_dto.py │ │ │ │ │ ├── create_custom_action_response.py │ │ │ │ │ ├── create_custom_event_response.py │ │ │ │ │ ├── create_kubernetes_integration_request.py │ │ │ │ │ ├── create_monitor_dto.py │ │ │ │ │ ├── create_policy_dto.py │ │ │ │ │ ├── create_role_dto.py │ │ │ │ │ ├── create_service_custom_event_body.py │ │ │ │ │ ├── create_user_request.py │ │ │ │ │ ├── cron_job_run_now_metadata.py │ │ │ │ │ ├── custom_event_dto.py │ │ │ │ │ ├── custom_event_response.py │ │ │ │ │ ├── custom_k8s_action.py │ │ │ │ │ ├── custom_k8s_action_create_request.py │ │ │ │ │ ├── custom_k8s_action_update_request.py │ │ │ │ │ ├── delete_policy_dto.py │ │ │ │ │ ├── delete_role_dto.py │ │ │ │ │ ├── deploy_data.py │ │ │ │ │ ├── deployment_status.py │ │ │ │ │ ├── edit_resource_metadata.py │ │ │ │ │ ├── effective_permission.py │ │ │ │ │ ├── epoch_time.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── error_wrapper.py │ │ │ │ │ ├── events_issue_type.py │ │ │ │ │ ├── evidence.py │ │ │ │ │ ├── evidence_collection.py │ │ │ │ │ ├── extended_violation.py │ │ │ │ │ ├── external_dns_not_synced_supporting_data.py │ │ │ │ │ ├── field_error.py │ │ │ │ │ ├── free_command_metadata.py │ │ │ │ │ ├── get_all_health_risks_response.py │ │ │ │ │ ├── get_bulk_actions_results_resp.py │ │ │ │ │ ├── get_monitors_data.py │ │ │ │ │ ├── get_monitors_response.py │ │ │ │ │ ├── get_update_violation_response.py │ │ │ │ │ ├── get_violation_response.py │ │ │ │ │ ├── get_workspaces_response.py │ │ │ │ │ ├── helm_release_info.py │ │ │ │ │ ├── high_request_limits_ratio_container_data.py │ │ │ │ │ ├── high_requests_limits_ratio_supporting_data.py │ │ │ │ │ ├── hpa_max_supporting_data.py │ │ │ │ │ ├── hpa_min_availability_supporting_data.py │ │ │ │ │ ├── http_request.py │ │ │ │ │ ├── http_requests_metadata.py │ │ │ │ │ ├── idle_gpu_supporting_data.py │ │ │ │ │ ├── impact_group_identifier.py │ │ │ │ │ ├── impact_group_type.py │ │ │ │ │ ├── install_helm_chart_metadata.py │ │ │ │ │ ├── issue_data.py │ │ │ │ │ ├── issue_reason_category.py │ │ │ │ │ ├── issue_status.py │ │ │ │ │ ├── issues_props.py │ │ │ │ │ ├── issues_props_wrapper.py │ │ │ │ │ ├── job_issue_data.py │ │ │ │ │ ├── job_rerun_metadata.py │ │ │ │ │ ├── job_status.py │ │ │ │ │ ├── k8_seol_supporting_data.py │ │ │ │ │ ├── k8s_event_props.py │ │ │ │ │ ├── k8s_event_props_wrapper.py │ │ │ │ │ ├── k8s_event_type.py │ │ │ │ │ ├── kill_event_type.py │ │ │ │ │ ├── klaudia_rca_request.py │ │ │ │ │ ├── klaudia_rca_response.py │ │ │ │ │ ├── klaudia_rca_results_response.py │ │ │ │ │ ├── knowledge_base_upload_request.py │ │ │ │ │ ├── kubernetes_integration.py │ │ │ │ │ ├── kubernetes_rbac_policy_rule.py │ │ │ │ │ ├── kubernetes_role_ruleset.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── memory_victim.py │ │ │ │ │ ├── memory_victim_event.py │ │ │ │ │ ├── minimal_action.py │ │ │ │ │ ├── monitor.py │ │ │ │ │ ├── monitor_configuration.py │ │ │ │ │ ├── monitor_configuration_params.py │ │ │ │ │ ├── monitor_type.py │ │ │ │ │ ├── node_term_victim_services.py │ │ │ │ │ ├── node_termination_impact_supporting_data.py │ │ │ │ │ ├── node_termination_supporting_data.py │ │ │ │ │ ├── noisy_neighbor_supporting_data.py │ │ │ │ │ ├── optional_cluster_scope.py │ │ │ │ │ ├── over_provisioned_cluster_grouped_data.py │ │ │ │ │ ├── over_provisioned_cluster_supporting_data.py │ │ │ │ │ ├── paginated_audit_logs.py │ │ │ │ │ ├── pagination_params.py │ │ │ │ │ ├── pagination_params_wrapper.py │ │ │ │ │ ├── pagination_token_params.py │ │ │ │ │ ├── pagination_token_params_wrapper.py │ │ │ │ │ ├── patch_resource_metadata.py │ │ │ │ │ ├── pattern.py │ │ │ │ │ ├── policy.py │ │ │ │ │ ├── policy1.py │ │ │ │ │ ├── policy_create_request.py │ │ │ │ │ ├── rbac_custom_k8s_action.py │ │ │ │ │ ├── rbac_policy_action.py │ │ │ │ │ ├── rbac_role_policy.py │ │ │ │ │ ├── rbac_role_policy_create_request.py │ │ │ │ │ ├── rbac_user_role.py │ │ │ │ │ ├── real_time_checks_supporting_data.py │ │ │ │ │ ├── resource.py │ │ │ │ │ ├── resource_type.py │ │ │ │ │ ├── resources_scope.py │ │ │ │ │ ├── response_meta.py │ │ │ │ │ ├── response_token_meta.py │ │ │ │ │ ├── restart_reason.py │ │ │ │ │ ├── revert_helm_release_metadata.py │ │ │ │ │ ├── right_sizing_cost_summary_by_service.py │ │ │ │ │ ├── role.py │ │ │ │ │ ├── role1.py │ │ │ │ │ ├── role_create_request.py │ │ │ │ │ ├── role_policies.py │ │ │ │ │ ├── role_policy.py │ │ │ │ │ ├── role_policy_delete_request.py │ │ │ │ │ ├── run_kubectl_command_metadata.py │ │ │ │ │ ├── scale_down_impact_supporting_data.py │ │ │ │ │ ├── scale_metadata.py │ │ │ │ │ ├── scale_metadata_data.py │ │ │ │ │ ├── schemas-_check_type.py │ │ │ │ │ ├── schemas-_pattern.py │ │ │ │ │ ├── schemas-_resources_scope.py │ │ │ │ │ ├── schemas-_selector.py │ │ │ │ │ ├── schemas-_selector_pattern.py │ │ │ │ │ ├── schemas-_selector_type.py │ │ │ │ │ ├── search_clusters_issues_body.py │ │ │ │ │ ├── search_clusters_k8s_events_body.py │ │ │ │ │ ├── search_events_data.py │ │ │ │ │ ├── search_events_response.py │ │ │ │ │ ├── search_issues_data.py │ │ │ │ │ ├── search_issues_response.py │ │ │ │ │ ├── search_jobs_body.py │ │ │ │ │ ├── search_jobs_data.py │ │ │ │ │ ├── search_jobs_response.py │ │ │ │ │ ├── search_services_body.py │ │ │ │ │ ├── search_services_data.py │ │ │ │ │ ├── search_services_issues_body.py │ │ │ │ │ ├── search_services_k8s_events_body.py │ │ │ │ │ ├── search_services_response.py │ │ │ │ │ ├── selector.py │ │ │ │ │ ├── selector_pattern.py │ │ │ │ │ ├── selector_type.py │ │ │ │ │ ├── service_kind.py │ │ │ │ │ ├── service_scope.py │ │ │ │ │ ├── service_scope_wrapper.py │ │ │ │ │ ├── service_state_yaml_response.py │ │ │ │ │ ├── service_status.py │ │ │ │ │ ├── service_termination_impact_data.py │ │ │ │ │ ├── severity.py │ │ │ │ │ ├── single_cluster.py │ │ │ │ │ ├── single_event.py │ │ │ │ │ ├── single_event_resource.py │ │ │ │ │ ├── single_issue.py │ │ │ │ │ ├── single_job.py │ │ │ │ │ ├── single_point_of_failure_supporting_data.py │ │ │ │ │ ├── single_service.py │ │ │ │ │ ├── sinks.py │ │ │ │ │ ├── sinks1.py │ │ │ │ │ ├── sinks_options.py │ │ │ │ │ ├── standard_termination_impact_data.py │ │ │ │ │ ├── statement.py │ │ │ │ │ ├── statement1.py │ │ │ │ │ ├── statement_resource.py │ │ │ │ │ ├── static_check_containers_supporting_data.py │ │ │ │ │ ├── submit_bulk_actions_request.py │ │ │ │ │ ├── synthetic_supporting_data.py │ │ │ │ │ ├── termination_event_impact_data.py │ │ │ │ │ ├── throttled_cpu_supporting_data.py │ │ │ │ │ ├── under_provisioned_workloads_supporting_data.py │ │ │ │ │ ├── unschedulable_pods_distribution.py │ │ │ │ │ ├── unschedulable_pods_impact_data.py │ │ │ │ │ ├── unschedulable_pods_supporting_data.py │ │ │ │ │ ├── update_custom_action_dto.py │ │ │ │ │ ├── update_monitor_dto.py │ │ │ │ │ ├── update_policy_request.py │ │ │ │ │ ├── update_role_request.py │ │ │ │ │ ├── update_user_request.py │ │ │ │ │ ├── user.py │ │ │ │ │ ├── user1.py │ │ │ │ │ ├── user_role.py │ │ │ │ │ ├── user_role_create_request.py │ │ │ │ │ ├── user_role_delete_request.py │ │ │ │ │ ├── user_role_update_request.py │ │ │ │ │ ├── user_roles.py │ │ │ │ │ ├── victim_instances.py │ │ │ │ │ ├── violation_status.py │ │ │ │ │ ├── violation_status_request_param.py │ │ │ │ │ ├── violation_supporting_data.py │ │ │ │ │ ├── workflow_configuration_sensor.py │ │ │ │ │ ├── workflow_configuration_sensor_filters.py │ │ │ │ │ ├── workflow_configuration_sinks_options.py │ │ │ │ │ ├── workflow_configuration_variables.py │ │ │ │ │ ├── workspace.py │ │ │ │ │ └── workspace_request.py │ │ │ │ ├── server.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api_v2_apikey_validate.py │ │ │ │ │ ├── api_v2_audit_log.py │ │ │ │ │ ├── api_v2_audit_log_filters.py │ │ │ │ │ ├── api_v2_clusters.py │ │ │ │ │ ├── api_v2_clusters_issues_search.py │ │ │ │ │ ├── api_v2_clusters_k8s_events_search.py │ │ │ │ │ ├── api_v2_cost_allocation.py │ │ │ │ │ ├── api_v2_cost_right_sizing_container.py │ │ │ │ │ ├── api_v2_cost_right_sizing_service.py │ │ │ │ │ ├── api_v2_health_risks.py │ │ │ │ │ ├── api_v2_health_risks_id.py │ │ │ │ │ ├── api_v2_integrations_kubernetes.py │ │ │ │ │ ├── api_v2_integrations_kubernetes_clustername.py │ │ │ │ │ ├── api_v2_integrations_kubernetes_id.py │ │ │ │ │ ├── api_v2_jobs_search.py │ │ │ │ │ ├── api_v2_klaudia_rca_sessions.py │ │ │ │ │ ├── api_v2_klaudia_rca_sessions_id.py │ │ │ │ │ ├── api_v2_rbac_actions.py │ │ │ │ │ ├── api_v2_rbac_actions_action.py │ │ │ │ │ ├── api_v2_rbac_actions_id.py │ │ │ │ │ ├── api_v2_rbac_kubeconfig.py │ │ │ │ │ ├── api_v2_rbac_policies.py │ │ │ │ │ ├── api_v2_rbac_policies_id_or_name.py │ │ │ │ │ ├── api_v2_rbac_roles.py │ │ │ │ │ ├── api_v2_rbac_roles_id_or_name.py │ │ │ │ │ ├── api_v2_rbac_roles_policies.py │ │ │ │ │ ├── api_v2_rbac_users_roles.py │ │ │ │ │ ├── api_v2_realtime_monitors_config.py │ │ │ │ │ ├── api_v2_realtime_monitors_config_id.py │ │ │ │ │ ├── api_v2_service_yaml.py │ │ │ │ │ ├── api_v2_services_issues_search.py │ │ │ │ │ ├── api_v2_services_k8s_events.py │ │ │ │ │ ├── api_v2_services_k8s_events_search.py │ │ │ │ │ ├── api_v2_services_search.py │ │ │ │ │ ├── api_v2_users.py │ │ │ │ │ ├── api_v2_users_effective_permissions.py │ │ │ │ │ ├── api_v2_users_id_or_email.py │ │ │ │ │ ├── mgmt_v1_apikey_validate.py │ │ │ │ │ ├── mgmt_v1_events.py │ │ │ │ │ ├── mgmt_v1_integrations_kubernetes.py │ │ │ │ │ ├── mgmt_v1_integrations_kubernetes_clustername.py │ │ │ │ │ ├── mgmt_v1_integrations_kubernetes_id.py │ │ │ │ │ ├── mgmt_v1_monitors_config.py │ │ │ │ │ ├── mgmt_v1_monitors_config_id.py │ │ │ │ │ ├── mgmt_v1_rbac_actions.py │ │ │ │ │ ├── mgmt_v1_rbac_actions_action.py │ │ │ │ │ ├── mgmt_v1_rbac_actions_id.py │ │ │ │ │ ├── mgmt_v1_rbac_policies.py │ │ │ │ │ ├── mgmt_v1_rbac_policies_id.py │ │ │ │ │ ├── mgmt_v1_rbac_roles.py │ │ │ │ │ ├── mgmt_v1_rbac_roles_id.py │ │ │ │ │ ├── mgmt_v1_rbac_roles_id_policies.py │ │ │ │ │ ├── mgmt_v1_rbac_roles_policies.py │ │ │ │ │ ├── mgmt_v1_rbac_users.py │ │ │ │ │ ├── mgmt_v1_rbac_users_id.py │ │ │ │ │ ├── mgmt_v1_rbac_users_id_roles.py │ │ │ │ │ └── mgmt_v1_rbac_users_roles.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_agent.py │ │ └── uv.lock │ ├── mcp-common.mk │ ├── pagerduty │ │ ├── .dockerignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_card.json │ │ ├── agent_pagerduty │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ └── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ ├── helpers.py │ │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ └── strict_match.py │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_pagerduty │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── incidents.py │ │ │ │ │ ├── schedules.py │ │ │ │ │ ├── services.py │ │ │ │ │ └── users.py │ │ │ │ ├── server.py │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── incidents.py │ │ │ │ │ ├── oncalls.py │ │ │ │ │ ├── schedules.py │ │ │ │ │ ├── services.py │ │ │ │ │ └── users.py │ │ │ │ └── utils │ │ │ │ │ └── __init__.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ ├── tests │ │ │ └── __init__.py │ │ └── uv.lock │ ├── slack │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent_slack │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ └── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ ├── helpers.py │ │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── langgraph.json │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_slack │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── channels.py │ │ │ │ │ └── messages.py │ │ │ │ ├── server.py │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── channels.py │ │ │ │ │ ├── files.py │ │ │ │ │ ├── messages.py │ │ │ │ │ └── users.py │ │ │ │ └── utils │ │ │ │ │ └── __init__.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_stuf.py │ │ └── uv.lock │ ├── splunk │ │ ├── .dockerignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_card.json │ │ ├── agent_splunk │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agent.py │ │ │ ├── agentcard.py │ │ │ ├── graph.py │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ ├── agent_executor.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── state.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── clients │ │ │ ├── __init__.py │ │ │ ├── a2a │ │ │ │ ├── __init__.py │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ ├── __init__.py │ │ │ │ └── agent.py │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_splunk │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── active.py │ │ │ │ │ ├── alert_muting_filter.py │ │ │ │ │ ├── alert_muting_rule.py │ │ │ │ │ ├── amazon_event_bridge_notification.py │ │ │ │ │ ├── anomaly_state.py │ │ │ │ │ ├── api_test_extract_setup.py │ │ │ │ │ ├── api_test_extract_type.py │ │ │ │ │ ├── api_test_extractor.py │ │ │ │ │ ├── api_test_javascript.py │ │ │ │ │ ├── api_test_requests.py │ │ │ │ │ ├── api_test_save.py │ │ │ │ │ ├── api_test_setup_name.py │ │ │ │ │ ├── api_test_source.py │ │ │ │ │ ├── api_test_validation_assert.py │ │ │ │ │ ├── api_test_validation_extract.py │ │ │ │ │ ├── api_test_validation_name.py │ │ │ │ │ ├── api_test_variable.py │ │ │ │ │ ├── authorized_writers.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── base_validate_api_response.py │ │ │ │ │ ├── big_panda_notification.py │ │ │ │ │ ├── big_panda_notification_object.py │ │ │ │ │ ├── count.py │ │ │ │ │ ├── create_detector_request.py │ │ │ │ │ ├── create_detector_response.py │ │ │ │ │ ├── created.py │ │ │ │ │ ├── created_at.py │ │ │ │ │ ├── created_by.py │ │ │ │ │ ├── creator.py │ │ │ │ │ ├── custom_event_response_object.py │ │ │ │ │ ├── custom_properties.py │ │ │ │ │ ├── description.py │ │ │ │ │ ├── detect_label.py │ │ │ │ │ ├── detector_event.py │ │ │ │ │ ├── detector_id.py │ │ │ │ │ ├── detector_inputs.py │ │ │ │ │ ├── detector_origin.py │ │ │ │ │ ├── detector_properties.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── dimension_metadata.py │ │ │ │ │ ├── dimension_query_response.py │ │ │ │ │ ├── dimension_update_request.py │ │ │ │ │ ├── dimension_update_response.py │ │ │ │ │ ├── dimensions.py │ │ │ │ │ ├── disabled.py │ │ │ │ │ ├── display_name.py │ │ │ │ │ ├── duration.py │ │ │ │ │ ├── email_notification.py │ │ │ │ │ ├── email_notification_object.py │ │ │ │ │ ├── empty_array.py │ │ │ │ │ ├── event_id.py │ │ │ │ │ ├── event_response_object.py │ │ │ │ │ ├── event_time.py │ │ │ │ │ ├── example_invalid_api_test_configuration.py │ │ │ │ │ ├── fragment.py │ │ │ │ │ ├── frequency.py │ │ │ │ │ ├── get_detector_events_response.py │ │ │ │ │ ├── get_detector_incident_response.py │ │ │ │ │ ├── get_detector_incidents_response.py │ │ │ │ │ ├── get_detector_response.py │ │ │ │ │ ├── get_detectors_response.py │ │ │ │ │ ├── get_tests_response.py │ │ │ │ │ ├── http_test_response.py │ │ │ │ │ ├── http_test_validate_request.py │ │ │ │ │ ├── id.py │ │ │ │ │ ├── incident_clear_rule.py │ │ │ │ │ ├── incident_clear_rules.py │ │ │ │ │ ├── incident_event.py │ │ │ │ │ ├── incident_event_source.py │ │ │ │ │ ├── incident_id.py │ │ │ │ │ ├── jira_notification.py │ │ │ │ │ ├── label.py │ │ │ │ │ ├── label_resolutions.py │ │ │ │ │ ├── last_run_at.py │ │ │ │ │ ├── last_run_status.py │ │ │ │ │ ├── last_updated.py │ │ │ │ │ ├── last_updated_by.py │ │ │ │ │ ├── linked_teams.py │ │ │ │ │ ├── list_of_ids.py │ │ │ │ │ ├── location_ids.py │ │ │ │ │ ├── locked.py │ │ │ │ │ ├── max_delay.py │ │ │ │ │ ├── metrics_metadata.py │ │ │ │ │ ├── metrics_query_response.py │ │ │ │ │ ├── min_delay.py │ │ │ │ │ ├── ms_teams_notification.py │ │ │ │ │ ├── ms_teams_notification_object.py │ │ │ │ │ ├── mts_metadata.py │ │ │ │ │ ├── mts_query_response.py │ │ │ │ │ ├── name.py │ │ │ │ │ ├── network_connection.py │ │ │ │ │ ├── not_found.py │ │ │ │ │ ├── notification_destination.py │ │ │ │ │ ├── notifications.py │ │ │ │ │ ├── ok_response.py │ │ │ │ │ ├── opsgenie_notification.py │ │ │ │ │ ├── opsgenie_notification_object.py │ │ │ │ │ ├── over_mts_limit.py │ │ │ │ │ ├── package_specifications.py │ │ │ │ │ ├── pager_duty_notification.py │ │ │ │ │ ├── pager_duty_notification_object.py │ │ │ │ │ ├── palette_index.py │ │ │ │ │ ├── parameterized_body.py │ │ │ │ │ ├── parameterized_subject.py │ │ │ │ │ ├── parent_detector_id.py │ │ │ │ │ ├── per_page.py │ │ │ │ │ ├── port_test_response.py │ │ │ │ │ ├── port_test_validate_request.py │ │ │ │ │ ├── program_text.py │ │ │ │ │ ├── publish_label_option.py │ │ │ │ │ ├── publish_label_options.py │ │ │ │ │ ├── recurrence.py │ │ │ │ │ ├── retrieve_alert_muting_rules_response.py │ │ │ │ │ ├── retrieve_incident_response.py │ │ │ │ │ ├── retrieve_incident_responses.py │ │ │ │ │ ├── rule.py │ │ │ │ │ ├── rule_description.py │ │ │ │ │ ├── rule_detect_label.py │ │ │ │ │ ├── rules.py │ │ │ │ │ ├── runbook_url.py │ │ │ │ │ ├── scheduling_strategy.py │ │ │ │ │ ├── send_alerts_once_muting_period_has_ended.py │ │ │ │ │ ├── service_now_notification.py │ │ │ │ │ ├── service_now_notification_object.py │ │ │ │ │ ├── severity.py │ │ │ │ │ ├── slack_notification.py │ │ │ │ │ ├── slack_notification_object.py │ │ │ │ │ ├── start_time.py │ │ │ │ │ ├── status.py │ │ │ │ │ ├── stop_time.py │ │ │ │ │ ├── tag_create_update_response.py │ │ │ │ │ ├── tag_metadata.py │ │ │ │ │ ├── tag_query_response.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── team_description.py │ │ │ │ │ ├── team_email_notification.py │ │ │ │ │ ├── team_email_notification_object.py │ │ │ │ │ ├── team_id.py │ │ │ │ │ ├── team_members_array.py │ │ │ │ │ ├── team_name.py │ │ │ │ │ ├── team_notification.py │ │ │ │ │ ├── team_notification_lists.py │ │ │ │ │ ├── team_notification_object.py │ │ │ │ │ ├── team_request_body.py │ │ │ │ │ ├── team_response_body.py │ │ │ │ │ ├── teams.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── time.py │ │ │ │ │ ├── time_stamp.py │ │ │ │ │ ├── time_zone.py │ │ │ │ │ ├── tip.py │ │ │ │ │ ├── total_count.py │ │ │ │ │ ├── unprocessable_entity.py │ │ │ │ │ ├── update_detector_request.py │ │ │ │ │ ├── update_detector_response.py │ │ │ │ │ ├── updated_at.py │ │ │ │ │ ├── updated_by.py │ │ │ │ │ ├── validate_api_response.py │ │ │ │ │ ├── validate_detector_request.py │ │ │ │ │ ├── validate_http_test_response.py │ │ │ │ │ ├── validate_port_test_response.py │ │ │ │ │ ├── value.py │ │ │ │ │ ├── value_prefix.py │ │ │ │ │ ├── value_suffix.py │ │ │ │ │ ├── value_unit.py │ │ │ │ │ ├── variable.py │ │ │ │ │ ├── variable_description.py │ │ │ │ │ ├── variable_name.py │ │ │ │ │ ├── variable_request_body.py │ │ │ │ │ ├── variable_secret.py │ │ │ │ │ ├── variable_value.py │ │ │ │ │ ├── victor_ops_notification.py │ │ │ │ │ ├── victor_ops_notification_object.py │ │ │ │ │ ├── visualization_options.py │ │ │ │ │ ├── webhook_notification.py │ │ │ │ │ ├── webhook_notification_object.py │ │ │ │ │ ├── x_matters_notification.py │ │ │ │ │ └── x_matters_notification_object.py │ │ │ │ ├── server.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alertmuting.py │ │ │ │ │ ├── alertmuting_id.py │ │ │ │ │ ├── alertmuting_id_unmute.py │ │ │ │ │ ├── detector.py │ │ │ │ │ ├── detector_id.py │ │ │ │ │ ├── detector_id_disable.py │ │ │ │ │ ├── detector_id_enable.py │ │ │ │ │ ├── detector_id_events.py │ │ │ │ │ ├── detector_id_incidents.py │ │ │ │ │ ├── detector_validate.py │ │ │ │ │ ├── dimension.py │ │ │ │ │ ├── dimension_key_value.py │ │ │ │ │ ├── event.py │ │ │ │ │ ├── event_find.py │ │ │ │ │ ├── incident.py │ │ │ │ │ ├── incident_clear.py │ │ │ │ │ ├── incident_id.py │ │ │ │ │ ├── incident_id_clear.py │ │ │ │ │ ├── metric.py │ │ │ │ │ ├── metric_name.py │ │ │ │ │ ├── metrictimeseries.py │ │ │ │ │ ├── metrictimeseries_id.py │ │ │ │ │ ├── tag.py │ │ │ │ │ ├── tag_name.py │ │ │ │ │ ├── team.py │ │ │ │ │ ├── team_tid.py │ │ │ │ │ ├── team_tid_member_uid.py │ │ │ │ │ ├── team_tid_members.py │ │ │ │ │ ├── tests.py │ │ │ │ │ ├── tests_bulk_delete.py │ │ │ │ │ ├── tests_id.py │ │ │ │ │ ├── tests_pause.py │ │ │ │ │ └── tests_play.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── template-claude-agent-sdk │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_petstore │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ ├── a2a_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ ├── agent_executor.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── state.py │ │ │ │ └── mcp_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── mcp_petstore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── client.py │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Category.py │ │ │ │ │ │ ├── Order.py │ │ │ │ │ │ ├── Pet.py │ │ │ │ │ │ ├── Tag.py │ │ │ │ │ │ ├── User.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── api_response.py │ │ │ │ │ │ └── base.py │ │ │ │ │ ├── server.py │ │ │ │ │ └── tools │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── pet.py │ │ │ │ │ │ ├── pet_findByStatus.py │ │ │ │ │ │ ├── pet_findByTags.py │ │ │ │ │ │ ├── pet_petid.py │ │ │ │ │ │ ├── pet_petid_uploadimage.py │ │ │ │ │ │ ├── store_inventory.py │ │ │ │ │ │ ├── store_order.py │ │ │ │ │ │ ├── store_order_orderid.py │ │ │ │ │ │ ├── user.py │ │ │ │ │ │ ├── user_createWithList.py │ │ │ │ │ │ ├── user_login.py │ │ │ │ │ │ ├── user_logout.py │ │ │ │ │ │ └── user_username.py │ │ │ │ │ └── pyproject.toml │ │ │ └── system_instructions.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── langgraph.json │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── template │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_petstore │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ └── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ ├── a2a_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ ├── helpers.py │ │ │ │ └── state.py │ │ │ │ └── mcp_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── mcp_petstore │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── models │ │ │ │ │ ├── Category.py │ │ │ │ │ ├── Order.py │ │ │ │ │ ├── Pet.py │ │ │ │ │ ├── Tag.py │ │ │ │ │ ├── User.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api_response.py │ │ │ │ │ └── base.py │ │ │ │ ├── server.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pet.py │ │ │ │ │ ├── pet_findByStatus.py │ │ │ │ │ ├── pet_findByTags.py │ │ │ │ │ ├── pet_petid.py │ │ │ │ │ ├── pet_petid_uploadimage.py │ │ │ │ │ ├── store_inventory.py │ │ │ │ │ ├── store_order.py │ │ │ │ │ ├── store_order_orderid.py │ │ │ │ │ ├── user.py │ │ │ │ │ ├── user_createWithList.py │ │ │ │ │ ├── user_login.py │ │ │ │ │ ├── user_logout.py │ │ │ │ │ └── user_username.py │ │ │ │ └── pyproject.toml │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── evals │ │ │ └── strict_match │ │ │ │ ├── README.md │ │ │ │ ├── strict_match.py │ │ │ │ └── strict_match_dataset.yaml │ │ ├── langgraph.json │ │ ├── mcp │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── mcp_petstore │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client.py │ │ │ │ ├── mcp_client.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── applications.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── log_models.py │ │ │ │ ├── server.py │ │ │ │ └── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── api_version.py │ │ │ ├── pyproject.toml │ │ │ └── uv.lock │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── weather │ │ ├── .dockerignore │ │ ├── .python-version │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_weather │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agentcard.py │ │ │ └── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ ├── helpers.py │ │ │ │ └── state.py │ │ ├── clients │ │ │ ├── a2a │ │ │ │ └── agent.py │ │ │ └── slim │ │ │ │ └── agent.py │ │ ├── pyproject.toml │ │ └── uv.lock │ └── webex │ │ ├── .dockerignore │ │ ├── .env.example │ │ ├── .github │ │ ├── CODEOWNERS │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.yml │ │ │ └── feature_request.yml │ │ ├── dependabot.yml │ │ ├── linters │ │ │ ├── .markdownlint.yml │ │ │ └── .yamllint.yml │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── a2a-docker-build.yml │ │ │ ├── conventional_commits.yml │ │ │ ├── lint.yml │ │ │ ├── stale.yml │ │ │ └── superlinter.yml │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── agent_webex │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── agentcard.py │ │ └── protocol_bindings │ │ │ └── a2a_server │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── agent.py │ │ │ ├── agent_executor.py │ │ │ ├── helpers.py │ │ │ └── state.py │ │ ├── clients │ │ ├── a2a │ │ │ ├── __init__.py │ │ │ └── agent.py │ │ └── slim │ │ │ ├── __init__.py │ │ │ └── agent.py │ │ ├── mcp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── mcp_webex │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── mcp_server.py │ │ ├── pyproject.toml │ │ └── uv.lock │ │ ├── pyproject.toml │ │ └── uv.lock ├── knowledge_bases │ ├── __init__.py │ └── rag │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Architecture.md │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent_ontology │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── src │ │ │ └── agent_ontology │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── helpers.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── prompts.py │ │ │ │ ├── relation_manager.py │ │ │ │ ├── restapi.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── pytest.ini │ │ │ │ ├── test_data_heuristics.json │ │ │ │ ├── test_evaluate_e2e.py │ │ │ │ ├── test_heuristics_deep_prop.py │ │ │ │ ├── test_heuristics_e2e.py │ │ │ │ ├── test_results_1._log │ │ │ │ ├── test_results_2._log │ │ │ │ ├── test_results_3._log │ │ │ │ └── update_ground_truth_data.py │ │ └── uv.lock │ │ ├── agent_rag │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── src │ │ │ └── agent_rag │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── agentcard.py │ │ │ │ ├── clients │ │ │ │ ├── a2a │ │ │ │ │ └── agent.py │ │ │ │ └── slim │ │ │ │ │ └── agent.py │ │ │ │ ├── prompts.py │ │ │ │ ├── protocol_bindings │ │ │ │ ├── __init__.py │ │ │ │ └── a2a_server │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── agent.py │ │ │ │ │ ├── agent_executor.py │ │ │ │ │ └── helpers.py │ │ │ │ └── state.py │ │ └── uv.lock │ │ ├── build │ │ ├── .dockerignore │ │ ├── Dockerfile.agent-ontology │ │ ├── Dockerfile.agent-rag │ │ ├── Dockerfile.connectors │ │ ├── Dockerfile.server │ │ └── Dockerfile.webui │ │ ├── common │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── src │ │ │ └── common │ │ │ │ ├── __init__.py │ │ │ │ ├── agent │ │ │ │ └── tools.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── graph_db │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── neo4j │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── graph_db.py │ │ │ │ ├── job_manager.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── graph.py │ │ │ │ ├── ontology.py │ │ │ │ └── rag.py │ │ │ │ ├── task_scheduler.py │ │ │ │ └── utils.py │ │ └── uv.lock │ │ ├── connectors │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── src │ │ │ └── connectors │ │ │ │ ├── __init__.py │ │ │ │ ├── aws │ │ │ │ └── client.py │ │ │ │ ├── backstage │ │ │ │ └── client.py │ │ │ │ ├── k8s │ │ │ │ └── client.py │ │ │ │ └── test_dummy │ │ │ │ ├── client.py │ │ │ │ └── dump.py │ │ └── uv.lock │ │ ├── docker-compose.yaml │ │ ├── docs │ │ └── rag_gif.gif │ │ ├── server │ │ ├── Makefile │ │ ├── README.md │ │ ├── pyproject.toml │ │ ├── pytest.ini │ │ ├── run_tests.py │ │ ├── src │ │ │ └── server │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── delete_all.py │ │ │ │ ├── loader │ │ │ │ ├── __init__.py │ │ │ │ ├── loader.py │ │ │ │ └── url │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── docsaurus_scraper.py │ │ │ │ │ └── mkdocs_scraper.py │ │ │ │ ├── metadata_storage.py │ │ │ │ ├── models.py │ │ │ │ ├── prompts.py │ │ │ │ ├── query_service.py │ │ │ │ ├── restapi.py │ │ │ │ └── tools.py │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── requirements.txt │ │ │ ├── test_loader.py │ │ │ ├── test_rag_api.py │ │ │ ├── test_scale_ingestion.py │ │ │ └── test_scrapers.py │ │ └── uv.lock │ │ ├── test_data.json │ │ └── webui │ │ ├── README.md │ │ ├── index.html │ │ ├── nginx.conf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src │ │ ├── assets │ │ │ ├── favicon.ico │ │ │ └── logo.svg │ │ ├── index.css │ │ ├── main.tsx │ │ └── ui │ │ │ ├── App.tsx │ │ │ ├── ExploreView.tsx │ │ │ ├── Graph │ │ │ ├── CustomGraphNode.tsx │ │ │ ├── DataGraph │ │ │ │ ├── DataEntityDetailsCard.tsx │ │ │ │ ├── DataGraph.tsx │ │ │ │ └── DataRelationDetailsCard.tsx │ │ │ ├── OntologyGraph │ │ │ │ ├── OntologyEntityDetailsCard.tsx │ │ │ │ ├── OntologyGraph.tsx │ │ │ │ └── OntologyRelationDetailsCard.tsx │ │ │ └── graphStyles.ts │ │ │ ├── IngestView.tsx │ │ │ ├── Models.tsx │ │ │ └── SearchView.tsx │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── mcp │ ├── mcp_argocd │ ├── mcp_backstage │ ├── mcp_confluence │ ├── mcp_jira │ ├── mcp_komodor │ ├── mcp_pagerduty │ ├── mcp_slack │ ├── mcp_splunk │ └── mcp_webex ├── multi_agents │ ├── README.md │ ├── __init__.py │ ├── __main__.py │ ├── agent_registry.py │ ├── platform_engineer │ │ ├── __init__.py │ │ ├── deep_agent.py │ │ ├── execution_plan_format.py │ │ ├── graph.py │ │ ├── langgraph.json │ │ ├── metadata_parser.py │ │ ├── prompts.py │ │ ├── protocol_bindings │ │ │ ├── __init__.py │ │ │ ├── a2a │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── agent_executor.py │ │ │ │ └── main.py │ │ │ └── fastapi │ │ │ │ ├── __init__.py │ │ │ │ └── main.py │ │ ├── response_format.py │ │ ├── state.py │ │ └── tools.py │ ├── pyproject.toml │ ├── tests │ │ ├── README.md │ │ ├── TESTING.md │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_agent_registry.py │ │ ├── test_agent_registry_advanced.py │ │ └── test_conftest.py │ ├── tools │ │ ├── WORKSPACE_USAGE.md │ │ ├── __init__.py │ │ ├── fetch_url.py │ │ ├── format_markdown.py │ │ ├── get_current_date.py │ │ ├── reflect_on_output.py │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── TEST_SUMMARY.md │ │ │ ├── __init__.py │ │ │ ├── run_tests.sh │ │ │ ├── test_fetch_url.py │ │ │ ├── test_format_markdown.py │ │ │ ├── test_get_current_date.py │ │ │ └── test_workspace_ops.py │ │ └── workspace_ops.py │ └── uv.lock └── utils │ ├── LOGGING_README.md │ ├── README.md │ ├── __init__.py │ ├── a2a_common │ ├── README.md │ ├── __init__.py │ ├── a2a_remote_agent_connect.py │ ├── base_langgraph_agent.py │ ├── base_langgraph_agent_executor.py │ ├── base_strands_agent.py │ ├── base_strands_agent_executor.py │ ├── context_config.py │ ├── helpers.py │ ├── state.py │ ├── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── pytest.ini │ │ ├── test_a2a_streaming_compliance.py │ │ ├── test_base_langgraph_agent.py │ │ ├── test_base_langgraph_agent_executor.py │ │ ├── test_base_strands_agent.py │ │ ├── test_base_strands_agent_executor.py │ │ ├── test_context_config.py │ │ ├── test_helpers.py │ │ └── test_tool_output_manager.py │ ├── tool_output_manager.py │ └── transport.py │ ├── agntcy │ ├── __init__.py │ └── agntcy_remote_agent_connect.py │ ├── auth │ ├── __init__.py │ ├── jwks_cache.py │ ├── oauth2_middleware.py │ └── shared_key_middleware.py │ ├── logging_config.py │ ├── misc │ ├── __init__.py │ └── misc.py │ ├── models │ ├── __init__.py │ ├── agents.py │ ├── base.py │ ├── events.py │ ├── generic_agent.py │ └── tasks.py │ ├── oauth │ ├── __init__.py │ └── get_oauth_jwt_token.py │ ├── prompt_config.py │ ├── prompt_templates.py │ ├── pyproject.toml │ └── tests │ ├── __init__.py │ └── test_prompt_templates_date_handling.py ├── argocd.json ├── changes ├── 2025-11-05-a2a-artifact-streaming-fix.md ├── 2025-11-05-argocd-oom-analysis.md ├── 2025-11-05-mcp-argocd-pagination-summary.md ├── 2025-11-05-oom-protection-diagram.md └── 2025-11-05-oom-protection-summary.md ├── charts ├── ai-platform-engineering │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── agent │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── agent-externalsecrets.yaml │ │ │ │ ├── agent-secret.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── llm-externalsecrets.yaml │ │ │ │ ├── llm-secret.yaml │ │ │ │ ├── mcp-deployment.yaml │ │ │ │ ├── mcp-service.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-agent-comprehensive.yaml │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── backstage-plugin-agent-forge │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-agent-comprehensive.yaml │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ └── supervisor-agent │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── externalsecrets.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ ├── test-agent-comprehensive.yaml │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ ├── data │ │ ├── archive │ │ │ ├── prompt_config.deep_agent.v1.yaml │ │ │ └── prompt_config.deep_agent.v2.yaml │ │ ├── prompt_config.deep_agent.yaml │ │ ├── prompt_config.deep_agent_jarvis.yaml │ │ └── prompt_config.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── externalsecrets.yaml │ │ ├── extra-deploy.yaml │ │ ├── prompt-config.yaml │ │ ├── secret.yaml │ │ ├── supervisor-agent-env.yaml │ │ └── tests │ │ │ ├── test-ai-platform-engineering.yaml │ │ │ ├── test-backstage-plugin.yaml │ │ │ └── test-integration.yaml │ ├── values-existing-secrets.yaml │ ├── values-external-secrets.yaml │ ├── values-ingress.yaml.example │ ├── values-prompt-examples.yaml │ ├── values-secrets.yaml.example │ └── values.yaml └── rag-stack │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── charts │ ├── agent-ontology │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── llm-externalsecret.yaml │ │ │ ├── llm-secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ ├── test-agent-comprehensive.yaml │ │ │ │ └── test-connection.yaml │ │ └── values.yaml │ ├── agent-rag │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── llm-externalsecret.yaml │ │ │ ├── llm-secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ ├── test-agent-comprehensive.yaml │ │ │ │ └── test-connection.yaml │ │ └── values.yaml │ ├── rag-redis │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── persistentvolumeclaim.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ └── values.yaml │ ├── rag-server │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ └── rag-webui │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── templates │ └── _helpers.tpl │ └── values.yaml ├── deepagents ├── __init__.py ├── builder.py ├── graph.py ├── interrupt.py ├── model.py ├── prompts.py ├── state.py ├── sub_agent.py └── tools.py ├── deploy.sh ├── deploy ├── data │ └── .gitkeep ├── eks │ ├── argocd-application.yaml.example │ ├── dev-eks-cluster-config.yaml.example │ └── dev-eks-cluster-using-existing-secrets.yaml.example ├── keycloak │ ├── README.md │ ├── caipe-realm.json │ └── docker-compose.yml └── secrets-examples │ ├── argocd-secret.yaml.example │ ├── atlassian-secret.yaml.example │ ├── backstage-secret.yaml.example │ ├── github-secret.yaml.example │ ├── llm-secret.yaml.example │ ├── pagerdty-secret.yaml.example │ └── slack-secret.yaml.example ├── docker-compose.dev.yaml ├── docker-compose.jarvis.yaml ├── docker-compose.yaml ├── docker-compose ├── README.md ├── docker-compose.argocd.yaml ├── docker-compose.aws.yaml ├── docker-compose.backstage.yaml ├── docker-compose.caipe-basic.yaml ├── docker-compose.caipe-complete-with-tracing.dev.yaml ├── docker-compose.caipe-complete-with-tracing.yaml ├── docker-compose.confluence.yaml ├── docker-compose.devops-engineer.yaml ├── docker-compose.github.yaml ├── docker-compose.incident-engineer.yaml ├── docker-compose.jira.yaml ├── docker-compose.komodor-dev.yaml ├── docker-compose.komodor.yaml ├── docker-compose.pagerduty.yaml ├── docker-compose.petstore.yaml ├── docker-compose.platform-engineer.yaml ├── docker-compose.product-owner.yaml ├── docker-compose.rag-only.yaml ├── docker-compose.slack.yaml ├── docker-compose.slim-tracing.yaml ├── docker-compose.splunk.yaml ├── docker-compose.weather.yaml └── docker-compose.webex.yaml ├── docs ├── .gitignore ├── ISTIO.md ├── README.md ├── blog │ ├── 2025-07-04-migrate-to-monorepo.md │ ├── 2025-07-08-agent-vs-mcp-server │ │ └── index.md │ ├── authors.yml │ └── tags.yml ├── docs │ ├── STREAMING_ARCHITECTURE.md │ ├── agent-ops │ │ ├── _category_.json │ │ └── index.md │ ├── agents │ │ ├── README.md │ │ ├── _category_.json │ │ ├── argocd.md │ │ ├── aws.md │ │ ├── backstage.md │ │ ├── confluence.md │ │ ├── github.md │ │ ├── jira.md │ │ ├── komodor.md │ │ ├── pagerduty.md │ │ ├── slack.md │ │ ├── splunk.md │ │ ├── template.md │ │ ├── weather.md │ │ └── webex.md │ ├── architecture │ │ ├── _category_.json │ │ ├── caipe_architecture_evolution.html │ │ ├── gateway.md │ │ ├── images │ │ │ ├── 1_react_agent.svg │ │ │ ├── 2_agent_using_mcp_tools.svg │ │ │ ├── 3_mas_multi_agent_system.svg │ │ │ ├── 4_caipe-a2a-peer-to-peer.svg │ │ │ ├── 5_caipe-architecture-a2a-over-gateway.svg │ │ │ ├── 6_solution_architecture.svg │ │ │ ├── agent-anatomy.mermaid │ │ │ ├── mas_architecture.svg │ │ │ └── solution_architecture.svg │ │ └── index.md │ ├── changes │ │ ├── .cursorrules │ │ ├── 2024-10-22-a2a-intermediate-states.md │ │ ├── 2024-10-22-agent-refactoring-summary.md │ │ ├── 2024-10-22-base-agent-refactor.md │ │ ├── 2024-10-22-enhanced-streaming-feature.md │ │ ├── 2024-10-22-implementation-summary.md │ │ ├── 2024-10-22-prompt-configuration.md │ │ ├── 2024-10-22-streaming-architecture.md │ │ ├── 2024-10-23-platform-engineer-streaming-architecture.md │ │ ├── 2024-10-23-prompt-templates-readme.md │ │ ├── 2024-10-25-session-context.md │ │ ├── 2024-10-25-sub-agent-tool-message-streaming.md │ │ ├── 2025-10-27-a2a-event-flow-architecture.md │ │ ├── 2025-10-27-agents-with-date-handling.md │ │ ├── 2025-10-27-automatic-date-time-injection.md │ │ ├── 2025-10-27-aws-backend-comparison.md │ │ ├── 2025-10-27-aws-ecs-mcp-integration.md │ │ ├── 2025-10-27-date-handling-guide.md │ │ ├── 2025-10-30-agent-forge-docker-build.md │ │ ├── 2025-10-30-agent-forge-workflow-setup.md │ │ ├── 2025-10-31-metadata-feature-summary.md │ │ ├── 2025-10-31-metadata-input-implementation.md │ │ ├── 2025-10-31-streaming-text-fix.md │ │ ├── 2025-11-05-a2a-artifact-streaming-fix.md │ │ ├── 2025-11-05-agent-forge-setup.md │ │ ├── 2025-11-05-architecture.md │ │ ├── 2025-11-05-argocd-oom-analysis.md │ │ ├── 2025-11-05-aws-integration.md │ │ ├── 2025-11-05-backstage-agent-changelog.md │ │ ├── 2025-11-05-context-config-env-vars.md │ │ ├── 2025-11-05-context-management.md │ │ ├── 2025-11-05-date-handling.md │ │ ├── 2025-11-05-mcp-argocd-pagination-summary.md │ │ ├── 2025-11-05-oom-protection-diagram.md │ │ ├── 2025-11-05-oom-protection-summary.md │ │ ├── 2025-11-05-todo-based-execution-plan.md │ │ ├── 2025-11-07-user-input-metadata-format.md │ │ ├── 2025-11-08-platform-engineer-final-response-parsing.md │ │ ├── README.md │ │ └── _category_.json │ ├── community │ │ ├── cnoe-sig-agentic-ai-community-meeting.ics │ │ ├── index.md │ │ └── meeting-recordings.md │ ├── contributing │ │ ├── _category_.json │ │ └── index.md │ ├── evaluations │ │ ├── _category_.json │ │ ├── distributed-tracing-info.md │ │ ├── index.md │ │ └── tracing-implementation-guide.md │ ├── getting-started │ │ ├── _category_.json │ │ ├── docker-compose │ │ │ ├── configure-agent-secrets.md │ │ │ ├── configure-llms.md │ │ │ └── setup.md │ │ ├── eks │ │ │ ├── configure-agent-secrets.md │ │ │ ├── configure-llms.md │ │ │ └── setup.md │ │ ├── helm │ │ │ └── setup.md │ │ ├── idpbuilder │ │ │ ├── images │ │ │ │ ├── argocd-vault-sync.svg │ │ │ │ ├── backstage-agent-interaction.svg │ │ │ │ ├── backstage-main.svg │ │ │ │ ├── rag-ingestion.svg │ │ │ │ ├── rag-querying-advanced.svg │ │ │ │ ├── rag-querying.svg │ │ │ │ └── vault-secrets.svg │ │ │ ├── manual-vault-secret-setup.md │ │ │ ├── setup.md │ │ │ └── ubuntu-prerequisites.md │ │ ├── index.md │ │ ├── kind │ │ │ ├── configure-agent-secrets.md │ │ │ ├── configure-llms.md │ │ │ └── setup.md │ │ ├── next-steps.md │ │ ├── quick-start.md │ │ └── user-interfaces.md │ ├── images │ │ └── intro.svg │ ├── index.md │ ├── installation │ │ ├── _category_.json │ │ ├── docker-compose.md │ │ ├── eks.md │ │ ├── index.md │ │ └── kind.md │ ├── knowledge_bases │ │ ├── images │ │ │ ├── rag-agent-arch.svg │ │ │ ├── rag-arch.svg │ │ │ ├── rag-ingestion.svg │ │ │ └── rag_gif.gif │ │ └── index.md │ ├── prompt-library │ │ ├── _category_.json │ │ └── index.md │ ├── releases │ │ ├── _category_.json │ │ └── index.md │ ├── security │ │ ├── _category_.json │ │ ├── a2a-auth.md │ │ ├── images │ │ │ └── ai-platform-engineering-architecture.svg │ │ └── index.md │ ├── tools-utils │ │ ├── agent-chat-cli.md │ │ ├── agent-forge-backstage-plugin.md │ │ ├── cnoe-agent-utils.md │ │ ├── jira-mcp-implementations-comparison.md │ │ └── openapi-mcp-codegen.md │ ├── usecases │ │ ├── incident-engineer.md │ │ ├── platform-engineer.md │ │ └── product-owner.md │ ├── workshop-archive │ │ ├── README.md │ │ ├── flyer.md │ │ ├── images │ │ │ ├── a2a-ref.svg │ │ │ ├── agent-anatomy.svg │ │ │ ├── argocd-vault-sync.svg │ │ │ ├── badge-expert.svg │ │ │ ├── badge-explorer.svg │ │ │ ├── badge-improver.svg │ │ │ ├── badge-master.svg │ │ │ ├── caipe-repo-qr.svg │ │ │ ├── caipe.svg │ │ │ ├── chat-cli-token.svg │ │ │ ├── get-involved-community.svg │ │ │ ├── langfuse-copy-keys.svg │ │ │ ├── langfuse-create-keys.svg │ │ │ ├── langfuse-create-new-project.svg │ │ │ ├── langfuse-new-project-userid.svg │ │ │ ├── mas-deep-agents.svg │ │ │ ├── mas-hierarchical-supervisor.svg │ │ │ ├── mas-network.svg │ │ │ ├── mas-supervisor.svg │ │ │ ├── mcp.svg │ │ │ ├── mission-control.svg │ │ │ ├── mission2-http.svg │ │ │ ├── mission2-stdio.svg │ │ │ ├── mission2.svg │ │ │ ├── mission3.svg │ │ │ ├── mission6.svg │ │ │ ├── rag-agent-arch.svg │ │ │ ├── rag-ingestion.svg │ │ │ ├── rag-overview-arch.svg │ │ │ ├── rag-ui-screenshot.svg │ │ │ ├── react-agent.svg │ │ │ ├── run-in-terminal.svg │ │ │ ├── vault-secrets.svg │ │ │ └── workshop_flyer.svg │ │ ├── mission1.md │ │ ├── mission2.md │ │ ├── mission3.md │ │ ├── mission4.md │ │ ├── mission6.md │ │ ├── mission7.md │ │ └── overview.md │ └── workshop │ │ ├── 00-caipeintro.md │ │ ├── 10-agent.md │ │ ├── 1000-conclusion.md │ │ ├── 20-mas.md │ │ ├── 30-rag.md │ │ ├── 40-idpbuilder.md │ │ ├── 50-tracing.md │ │ ├── content │ │ └── work │ │ │ └── simple-agent │ │ │ ├── simple_mcp_server.py │ │ │ ├── simple_react_agent.py │ │ │ └── simple_react_agent_with_mcp.py │ │ └── images │ │ ├── a2a-ref.svg │ │ ├── agent-anatomy.svg │ │ ├── argocd-vault-sync.svg │ │ ├── badge-expert.svg │ │ ├── badge-explorer.svg │ │ ├── badge-improver.svg │ │ ├── badge-master.svg │ │ ├── caipe-repo-qr.svg │ │ ├── caipe.svg │ │ ├── chat-cli-token.svg │ │ ├── get-involved-community.svg │ │ ├── idpbuilder.svg │ │ ├── langfuse-copy-keys.svg │ │ ├── langfuse-create-keys.svg │ │ ├── langfuse-create-new-project.svg │ │ ├── langfuse-new-project-userid.svg │ │ ├── mas-deep-agents.svg │ │ ├── mas-hierarchical-supervisor.svg │ │ ├── mas-network.svg │ │ ├── mas-supervisor.svg │ │ ├── mas_architecture.svg │ │ ├── mas_system.svg │ │ ├── mcp.svg │ │ ├── mission-control.svg │ │ ├── mission2-http.svg │ │ ├── mission2-stdio.svg │ │ ├── mission2.svg │ │ ├── mission3.svg │ │ ├── mission6.svg │ │ ├── rag-agent-arch.svg │ │ ├── rag-ingestion.svg │ │ ├── rag-overview-arch.svg │ │ ├── rag-ui-screenshot.svg │ │ ├── react-agent.svg │ │ ├── run-in-terminal.svg │ │ ├── vault-secrets.svg │ │ └── workshop_flyer.svg ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ └── css │ │ └── custom.css ├── static │ ├── .nojekyll │ └── img │ │ ├── favicon.ico │ │ └── logo.svg └── tsconfig.json ├── evals ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── clients │ ├── __init__.py │ └── eval_client.py ├── datasets │ ├── multi_agent.yaml │ └── single_agent.yaml ├── evaluators │ ├── __init__.py │ ├── routing_evaluator.py │ └── tool_match_evaluator.py ├── models │ ├── __init__.py │ ├── dataset.py │ └── evaluation.py ├── prompts │ ├── create_operations.yaml │ ├── eval_prompts.yaml │ ├── read_operations.yaml │ └── update_operations.yaml ├── pyproject.toml ├── runner.py ├── tests │ ├── save_trace_utility.py │ ├── test_trace_extractor.py │ └── test_trace_tool_calls.py ├── trace_analysis │ ├── TRACE_STRUCTURE.md │ ├── __init__.py │ └── extractor.py ├── upload_dataset.py ├── uv.lock └── webhook │ ├── __init__.py │ └── langfuse_webhook.py ├── integration ├── EXECUTOR_TESTS_README.md ├── README.md ├── STREAMING_TESTS_README.md ├── a2a_client_integration_test.py ├── comprehensive_routing_test.sh ├── pytest.ini ├── quick_routing_test.sh ├── reports │ ├── PLATFORM_STATUS_SUMMARY.md │ ├── agent_test_report_20251023_162028.md │ └── agent_test_report_20251023_162334.md ├── requirements.txt ├── test-prompts.txt ├── test_all_agents.sh ├── test_all_streaming.sh ├── test_execution_plan_streaming.py ├── test_incident_engineering_prompt.py ├── test_platform_engineer_executor.py ├── test_platform_engineer_streaming.py ├── test_prompts_argocd_sanity.yaml ├── test_prompts_detailed.yaml ├── test_prompts_explicit_todos.yaml ├── test_prompts_quick_sanity.yaml ├── test_prompts_todo_list.yaml ├── test_rag_streaming.py ├── test_routing_modes.py ├── tests │ └── agent_integration_test.sh └── verify_setup.py ├── persona.yaml ├── profiles └── README.md ├── prompt_config.yaml ├── pyproject.toml ├── scripts ├── README.md ├── add-new-agent-helm-chart.py ├── analyze_accumulation_flow.py ├── generate-docker-compose.py ├── test_generate_docker_compose.py └── validate_artifacts.py ├── slim-config.yaml ├── test_argocd_pagination.sh ├── tests └── test_platform_engineer_executor_a2a_streaming.py ├── uv.lock ├── workshop ├── docker-compose.dev.override.yaml ├── docker-compose.mission2.yaml ├── docker-compose.mission3.yaml ├── docker-compose.mission4.yaml └── docker-compose.mission7.yaml └── yarn.lock /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.cursorrules -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/linters/.markdownlint.yml -------------------------------------------------------------------------------- /.github/linters/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/linters/.yamllint.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/test-build-locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/test-build-locally.sh -------------------------------------------------------------------------------- /.github/verify-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/verify-setup.sh -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/_stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/_stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci-a2a-rag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/ci-a2a-rag.yml -------------------------------------------------------------------------------- /.github/workflows/ci-a2a-sub-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/ci-a2a-sub-agent.yml -------------------------------------------------------------------------------- /.github/workflows/ci-agent-forge-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/ci-agent-forge-plugin.yml -------------------------------------------------------------------------------- /.github/workflows/ci-mcp-sub-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/ci-mcp-sub-agent.yml -------------------------------------------------------------------------------- /.github/workflows/ci-supervisor-agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/ci-supervisor-agent.yml -------------------------------------------------------------------------------- /.github/workflows/conventional_commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/conventional_commits.yml -------------------------------------------------------------------------------- /.github/workflows/helm-chart-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/helm-chart-test.yml -------------------------------------------------------------------------------- /.github/workflows/helm-pre-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/helm-pre-release.yml -------------------------------------------------------------------------------- /.github/workflows/helm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/helm.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release-a2a-rag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/pre-release-a2a-rag.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release-a2a-sub-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/pre-release-a2a-sub-agent.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-release-agent-forge-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/pre-release-agent-forge-plugin.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-release-mcp-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/pre-release-mcp-agent.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-release-supervisor-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/pre-release-supervisor-agent.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/publish-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/superlinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/superlinter.yml -------------------------------------------------------------------------------- /.github/workflows/tests-detailed-sanity-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/tests-detailed-sanity-integration.yml -------------------------------------------------------------------------------- /.github/workflows/tests-quick-sanity-integration-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/tests-quick-sanity-integration-dev.yml -------------------------------------------------------------------------------- /.github/workflows/tests-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.github/workflows/tests-unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaksignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/.gitleaksignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ai_platform_engineering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/.env.example -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/[internal]: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE Contributors 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/agent_argocd/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/agent_argocd/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/agent_argocd/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/agent_argocd/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/agent_argocd/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/agent_argocd/state.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/langgraph.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/mcp/mcp_argocd/api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/mcp/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/mcp/tests/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/argocd/tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/argocd/tests/test_agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/atlassian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/atlassian/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/CONTRIBUTING.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/LICENSE -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/agent_aws/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/agent_aws/__main__.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/agent_aws/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/agent_aws/models.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/agent_aws/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/agent_aws/state.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/build/Dockerfile.a2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/build/Dockerfile.a2a -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/requirements.txt -------------------------------------------------------------------------------- /ai_platform_engineering/agents/aws/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/aws/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/agent_backstage/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Copyright 2025 Cisco 3 | # SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the Backstage agent.""" -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/tests/test_agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/backstage/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/backstage/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/common.mk -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/agent_confluence/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/agent_confluence/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/agent_confluence/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/mcp/mcp_confluence/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/mcp/mcp_confluence/utils/tools.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/confluence/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/confluence/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/.vscode/mcp.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/MAINTAINERS.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE Contributors 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/agent_github/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/agent_github/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/agent_github/graph.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/agent_github/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/agent_github/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/agent_github/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/langgraph.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/tests/test_stub.py: -------------------------------------------------------------------------------- 1 | def test_stub(): 2 | assert True -------------------------------------------------------------------------------- /ai_platform_engineering/agents/github/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/github/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/agent_jira/__main__.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/agentcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/agent_jira/agentcard.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/agent_jira/graph.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/agent_jira/models.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/agent_jira/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/agent_jira/state.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/mcp_jira/__init__.py: -------------------------------------------------------------------------------- 1 | """Jira MCP package.""" 2 | 3 | __version__ = "0.1.0" -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/mcp_jira/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/mcp_jira/__main__.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/mcp_jira/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/mcp_jira/server.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/mcp_jira/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/mcp_jira/utils/io.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the PagerDuty agent.""" -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/tests/test_stub.py: -------------------------------------------------------------------------------- 1 | def test_placeholder(): 2 | assert True -------------------------------------------------------------------------------- /ai_platform_engineering/agents/jira/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/jira/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/MAINTAINERS.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/agent_komodor/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/agent_komodor/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/agent_komodor/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/langgraph.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/mcp_komodor/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/mcp_komodor/api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/mcp_komodor/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/mcp_komodor/tools/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/tests/test_agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/komodor/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/komodor/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/mcp-common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/mcp-common.mk -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/agent_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/agent_card.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/agent_pagerduty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/agent_pagerduty/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # Copyright 2025 Cisco 3 | # SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/mcp_pagerduty/__init__.py: -------------------------------------------------------------------------------- 1 | """PagerDuty MCP package.""" 2 | 3 | __version__ = "0.1.0" -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/mcp_pagerduty/models/services.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/mcp_pagerduty/tools/__init__.py: -------------------------------------------------------------------------------- 1 | """MCP tools for PagerDuty""" 2 | 3 | from . import * 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/mcp_pagerduty/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """PagerDuty MCP utilities.""" -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the PagerDuty agent.""" -------------------------------------------------------------------------------- /ai_platform_engineering/agents/pagerduty/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/pagerduty/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/MAINTAINERS.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE Contributors 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/agent_slack/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/agent_slack/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/agent_slack/__main__.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/agent_slack/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/agent_slack/graph.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/agent_slack/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/agent_slack/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/agent_slack/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/langgraph.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/mcp_slack/api/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | """Package module.""" 5 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/mcp_slack/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | """Package module.""" 5 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/mcp_slack/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/mcp/mcp_slack/server.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/mcp_slack/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | """Package module.""" 5 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/tests/test_stuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/tests/test_stuf.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/slack/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/slack/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/agent_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/agent_card.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/agent_splunk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/agent_splunk/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/agent_splunk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/agent_splunk/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/agent_splunk/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/agent_splunk/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/clients/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/splunk/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/splunk/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template-claude-agent-sdk/agent_petstore/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template-claude-agent-sdk/agent_petstore/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template-claude-agent-sdk/agent_petstore/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/CHANGELOG.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/agent_petstore/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/agent_petstore/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/agent_petstore/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/agent_petstore/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/langgraph.json -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/mcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/mcp/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/mcp/mcp_petstore/api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/template/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/template/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/weather/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/weather/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/README.md: -------------------------------------------------------------------------------- 1 | # Weather Agent -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/agent_weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/agent_weather/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/weather/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/weather/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/weather/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/.env.example -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/.github/CODEOWNERS -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/MAINTAINERS.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/Makefile -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/agent_webex/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/agent_webex/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/agent_webex/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/clients/a2a/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/clients/a2a/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/clients/slim/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/clients/slim/agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/mcp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/mcp/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/mcp/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/mcp/mcp_webex/__about__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | __version__ = "0.0.1" 5 | -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/mcp/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/mcp/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/mcp/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/agents/webex/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/agents/webex/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE Contributors 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/knowledge_bases/rag/.dockerignore -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/knowledge_bases/rag/.gitignore -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/knowledge_bases/rag/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE Contributors 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_ontology/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_ontology/src/agent_ontology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_ontology/src/agent_ontology/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_rag/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_rag/src/agent_rag/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_rag/src/agent_rag/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_rag/src/agent_rag/protocol_bindings/a2a_server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/agent_rag/src/agent_rag/protocol_bindings/a2a_server/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/common/src/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/common/src/common/graph_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/common/src/common/graph_db/neo4j/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/common/src/common/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/common/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/knowledge_bases/rag/common/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/connectors/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/connectors/src/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | def main() -> None: 2 | print("Hello from connectors!") 3 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/server/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/server/src/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/server/src/server/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/server/src/server/loader/url/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/server/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Test package for RAG server 2 | -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/server/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/knowledge_bases/rag/server/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/knowledge_bases/rag/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/knowledge_bases/rag/test_data.json -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_argocd: -------------------------------------------------------------------------------- 1 | ../agents/argocd/mcp/mcp_argocd -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_backstage: -------------------------------------------------------------------------------- 1 | ../agents/backstage/mcp/mcp_backstage -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_confluence: -------------------------------------------------------------------------------- 1 | ../agents/confluence/mcp/mcp_confluence -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_jira: -------------------------------------------------------------------------------- 1 | ../agents/jira/mcp/mcp_jira -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_komodor: -------------------------------------------------------------------------------- 1 | ../agents/komodor/mcp/mcp_komodor -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_pagerduty: -------------------------------------------------------------------------------- 1 | ../agents/pagerduty/mcp/mcp_pagerduty -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_slack: -------------------------------------------------------------------------------- 1 | ../agents/slack/mcp/mcp_slack -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_splunk: -------------------------------------------------------------------------------- 1 | ../agents/splunk/mcp/mcp_splunk -------------------------------------------------------------------------------- /ai_platform_engineering/mcp/mcp_webex: -------------------------------------------------------------------------------- 1 | ../agents/webex/mcp/mcp_webex -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/__main__.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/agent_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/agent_registry.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/platform_engineer/protocol_bindings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/platform_engineer/protocol_bindings/a2a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/platform_engineer/protocol_bindings/fastapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tests/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tests/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tests/TESTING.md -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tests/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tests/conftest.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tools/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tools/fetch_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tools/fetch_url.py -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/tools/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/tools/tests/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/multi_agents/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/multi_agents/uv.lock -------------------------------------------------------------------------------- /ai_platform_engineering/utils/LOGGING_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/LOGGING_README.md -------------------------------------------------------------------------------- /ai_platform_engineering/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/context_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/context_config.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/helpers.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/state.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/tests/README.md -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 CNOE 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | """Tests for A2A base classes.""" 5 | 6 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/tests/conftest.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/a2a_common/tests/pytest.ini -------------------------------------------------------------------------------- /ai_platform_engineering/utils/a2a_common/transport.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/agntcy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/auth/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/auth/jwks_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/auth/jwks_cache.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/auth/oauth2_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/auth/oauth2_middleware.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/logging_config.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/misc/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/misc/misc.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/models/agents.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/models/base.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/models/events.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/models/generic_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/models/generic_agent.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/models/tasks.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai_platform_engineering/utils/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/oauth/__init__.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/oauth/get_oauth_jwt_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/oauth/get_oauth_jwt_token.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/prompt_config.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/prompt_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/prompt_templates.py -------------------------------------------------------------------------------- /ai_platform_engineering/utils/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/ai_platform_engineering/utils/pyproject.toml -------------------------------------------------------------------------------- /ai_platform_engineering/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /argocd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/argocd.json -------------------------------------------------------------------------------- /changes/2025-11-05-a2a-artifact-streaming-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/changes/2025-11-05-a2a-artifact-streaming-fix.md -------------------------------------------------------------------------------- /changes/2025-11-05-argocd-oom-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/changes/2025-11-05-argocd-oom-analysis.md -------------------------------------------------------------------------------- /changes/2025-11-05-mcp-argocd-pagination-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/changes/2025-11-05-mcp-argocd-pagination-summary.md -------------------------------------------------------------------------------- /changes/2025-11-05-oom-protection-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/changes/2025-11-05-oom-protection-diagram.md -------------------------------------------------------------------------------- /changes/2025-11-05-oom-protection-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/changes/2025-11-05-oom-protection-summary.md -------------------------------------------------------------------------------- /charts/ai-platform-engineering/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/Chart.lock -------------------------------------------------------------------------------- /charts/ai-platform-engineering/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/Chart.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/README.md -------------------------------------------------------------------------------- /charts/ai-platform-engineering/charts/agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/charts/agent/Chart.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/charts/agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/charts/agent/values.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/data/prompt_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/data/prompt_config.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/ai-platform-engineering/templates/extra-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/templates/extra-deploy.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/templates/secret.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/values-ingress.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/values-ingress.yaml.example -------------------------------------------------------------------------------- /charts/ai-platform-engineering/values-prompt-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/values-prompt-examples.yaml -------------------------------------------------------------------------------- /charts/ai-platform-engineering/values-secrets.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/values-secrets.yaml.example -------------------------------------------------------------------------------- /charts/ai-platform-engineering/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/ai-platform-engineering/values.yaml -------------------------------------------------------------------------------- /charts/rag-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/.helmignore -------------------------------------------------------------------------------- /charts/rag-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/Chart.lock -------------------------------------------------------------------------------- /charts/rag-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/Chart.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-ontology/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-ontology/Chart.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-ontology/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-ontology/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-ontology/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-ontology/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-ontology/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-ontology/values.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/Chart.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/templates/service.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/agent-rag/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/agent-rag/values.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/.helmignore -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/Chart.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/templates/service.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-redis/values.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-server/Chart.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-server/templates/service.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-server/values.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-webui/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-webui/Chart.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-webui/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-webui/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-webui/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-webui/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-webui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-webui/templates/service.yaml -------------------------------------------------------------------------------- /charts/rag-stack/charts/rag-webui/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/charts/rag-webui/values.yaml -------------------------------------------------------------------------------- /charts/rag-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/rag-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/charts/rag-stack/values.yaml -------------------------------------------------------------------------------- /deepagents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/__init__.py -------------------------------------------------------------------------------- /deepagents/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/builder.py -------------------------------------------------------------------------------- /deepagents/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/graph.py -------------------------------------------------------------------------------- /deepagents/interrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/interrupt.py -------------------------------------------------------------------------------- /deepagents/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/model.py -------------------------------------------------------------------------------- /deepagents/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/prompts.py -------------------------------------------------------------------------------- /deepagents/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/state.py -------------------------------------------------------------------------------- /deepagents/sub_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/sub_agent.py -------------------------------------------------------------------------------- /deepagents/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deepagents/tools.py -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy/data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/data/.gitkeep -------------------------------------------------------------------------------- /deploy/eks/argocd-application.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/eks/argocd-application.yaml.example -------------------------------------------------------------------------------- /deploy/eks/dev-eks-cluster-config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/eks/dev-eks-cluster-config.yaml.example -------------------------------------------------------------------------------- /deploy/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/keycloak/README.md -------------------------------------------------------------------------------- /deploy/keycloak/caipe-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/keycloak/caipe-realm.json -------------------------------------------------------------------------------- /deploy/keycloak/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/keycloak/docker-compose.yml -------------------------------------------------------------------------------- /deploy/secrets-examples/argocd-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/argocd-secret.yaml.example -------------------------------------------------------------------------------- /deploy/secrets-examples/atlassian-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/atlassian-secret.yaml.example -------------------------------------------------------------------------------- /deploy/secrets-examples/backstage-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/backstage-secret.yaml.example -------------------------------------------------------------------------------- /deploy/secrets-examples/github-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/github-secret.yaml.example -------------------------------------------------------------------------------- /deploy/secrets-examples/llm-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/llm-secret.yaml.example -------------------------------------------------------------------------------- /deploy/secrets-examples/pagerdty-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/pagerdty-secret.yaml.example -------------------------------------------------------------------------------- /deploy/secrets-examples/slack-secret.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/deploy/secrets-examples/slack-secret.yaml.example -------------------------------------------------------------------------------- /docker-compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose.dev.yaml -------------------------------------------------------------------------------- /docker-compose.jarvis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose.jarvis.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/README.md -------------------------------------------------------------------------------- /docker-compose/docker-compose.argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.argocd.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.aws.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.backstage.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.caipe-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.caipe-basic.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.confluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.confluence.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.devops-engineer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.devops-engineer.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.github.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.incident-engineer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.incident-engineer.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.jira.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.jira.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.komodor-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.komodor-dev.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.komodor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.komodor.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.pagerduty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.pagerduty.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.petstore.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.platform-engineer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.platform-engineer.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.product-owner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.product-owner.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.rag-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.rag-only.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.slack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.slack.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.slim-tracing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.slim-tracing.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.splunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.splunk.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.weather.yaml -------------------------------------------------------------------------------- /docker-compose/docker-compose.webex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docker-compose/docker-compose.webex.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/ISTIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/ISTIO.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blog/2025-07-04-migrate-to-monorepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/blog/2025-07-04-migrate-to-monorepo.md -------------------------------------------------------------------------------- /docs/blog/2025-07-08-agent-vs-mcp-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/blog/2025-07-08-agent-vs-mcp-server/index.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/blog/tags.yml -------------------------------------------------------------------------------- /docs/docs/STREAMING_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/STREAMING_ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/docs/agent-ops/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agent-ops/_category_.json -------------------------------------------------------------------------------- /docs/docs/agent-ops/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agent-ops/index.md -------------------------------------------------------------------------------- /docs/docs/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/README.md -------------------------------------------------------------------------------- /docs/docs/agents/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/_category_.json -------------------------------------------------------------------------------- /docs/docs/agents/argocd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/argocd.md -------------------------------------------------------------------------------- /docs/docs/agents/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/aws.md -------------------------------------------------------------------------------- /docs/docs/agents/backstage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/backstage.md -------------------------------------------------------------------------------- /docs/docs/agents/confluence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/confluence.md -------------------------------------------------------------------------------- /docs/docs/agents/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/github.md -------------------------------------------------------------------------------- /docs/docs/agents/jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/jira.md -------------------------------------------------------------------------------- /docs/docs/agents/komodor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/komodor.md -------------------------------------------------------------------------------- /docs/docs/agents/pagerduty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/pagerduty.md -------------------------------------------------------------------------------- /docs/docs/agents/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/slack.md -------------------------------------------------------------------------------- /docs/docs/agents/splunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/splunk.md -------------------------------------------------------------------------------- /docs/docs/agents/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/template.md -------------------------------------------------------------------------------- /docs/docs/agents/weather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/weather.md -------------------------------------------------------------------------------- /docs/docs/agents/webex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/agents/webex.md -------------------------------------------------------------------------------- /docs/docs/architecture/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/_category_.json -------------------------------------------------------------------------------- /docs/docs/architecture/caipe_architecture_evolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/caipe_architecture_evolution.html -------------------------------------------------------------------------------- /docs/docs/architecture/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/gateway.md -------------------------------------------------------------------------------- /docs/docs/architecture/images/1_react_agent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/1_react_agent.svg -------------------------------------------------------------------------------- /docs/docs/architecture/images/2_agent_using_mcp_tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/2_agent_using_mcp_tools.svg -------------------------------------------------------------------------------- /docs/docs/architecture/images/3_mas_multi_agent_system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/3_mas_multi_agent_system.svg -------------------------------------------------------------------------------- /docs/docs/architecture/images/4_caipe-a2a-peer-to-peer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/4_caipe-a2a-peer-to-peer.svg -------------------------------------------------------------------------------- /docs/docs/architecture/images/6_solution_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/6_solution_architecture.svg -------------------------------------------------------------------------------- /docs/docs/architecture/images/agent-anatomy.mermaid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/agent-anatomy.mermaid -------------------------------------------------------------------------------- /docs/docs/architecture/images/mas_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/mas_architecture.svg -------------------------------------------------------------------------------- /docs/docs/architecture/images/solution_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/images/solution_architecture.svg -------------------------------------------------------------------------------- /docs/docs/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/architecture/index.md -------------------------------------------------------------------------------- /docs/docs/changes/.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/.cursorrules -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-a2a-intermediate-states.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-a2a-intermediate-states.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-agent-refactoring-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-agent-refactoring-summary.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-base-agent-refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-base-agent-refactor.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-enhanced-streaming-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-enhanced-streaming-feature.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-implementation-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-implementation-summary.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-prompt-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-prompt-configuration.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-22-streaming-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-22-streaming-architecture.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-23-prompt-templates-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-23-prompt-templates-readme.md -------------------------------------------------------------------------------- /docs/docs/changes/2024-10-25-session-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2024-10-25-session-context.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-27-agents-with-date-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-27-agents-with-date-handling.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-27-aws-backend-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-27-aws-backend-comparison.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-27-aws-ecs-mcp-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-27-aws-ecs-mcp-integration.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-27-date-handling-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-27-date-handling-guide.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-30-agent-forge-docker-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-30-agent-forge-docker-build.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-30-agent-forge-workflow-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-30-agent-forge-workflow-setup.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-31-metadata-feature-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-31-metadata-feature-summary.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-10-31-streaming-text-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-10-31-streaming-text-fix.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-a2a-artifact-streaming-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-a2a-artifact-streaming-fix.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-agent-forge-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-agent-forge-setup.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-architecture.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-argocd-oom-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-argocd-oom-analysis.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-aws-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-aws-integration.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-backstage-agent-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-backstage-agent-changelog.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-context-config-env-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-context-config-env-vars.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-context-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-context-management.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-date-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-date-handling.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-oom-protection-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-oom-protection-diagram.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-oom-protection-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-oom-protection-summary.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-05-todo-based-execution-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-05-todo-based-execution-plan.md -------------------------------------------------------------------------------- /docs/docs/changes/2025-11-07-user-input-metadata-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/2025-11-07-user-input-metadata-format.md -------------------------------------------------------------------------------- /docs/docs/changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/README.md -------------------------------------------------------------------------------- /docs/docs/changes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/changes/_category_.json -------------------------------------------------------------------------------- /docs/docs/community/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/community/index.md -------------------------------------------------------------------------------- /docs/docs/community/meeting-recordings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/community/meeting-recordings.md -------------------------------------------------------------------------------- /docs/docs/contributing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/contributing/_category_.json -------------------------------------------------------------------------------- /docs/docs/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/contributing/index.md -------------------------------------------------------------------------------- /docs/docs/evaluations/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/evaluations/_category_.json -------------------------------------------------------------------------------- /docs/docs/evaluations/distributed-tracing-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/evaluations/distributed-tracing-info.md -------------------------------------------------------------------------------- /docs/docs/evaluations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/evaluations/index.md -------------------------------------------------------------------------------- /docs/docs/evaluations/tracing-implementation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/evaluations/tracing-implementation-guide.md -------------------------------------------------------------------------------- /docs/docs/getting-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/_category_.json -------------------------------------------------------------------------------- /docs/docs/getting-started/docker-compose/configure-llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/docker-compose/configure-llms.md -------------------------------------------------------------------------------- /docs/docs/getting-started/docker-compose/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/docker-compose/setup.md -------------------------------------------------------------------------------- /docs/docs/getting-started/eks/configure-agent-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/eks/configure-agent-secrets.md -------------------------------------------------------------------------------- /docs/docs/getting-started/eks/configure-llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/eks/configure-llms.md -------------------------------------------------------------------------------- /docs/docs/getting-started/eks/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/eks/setup.md -------------------------------------------------------------------------------- /docs/docs/getting-started/helm/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/helm/setup.md -------------------------------------------------------------------------------- /docs/docs/getting-started/idpbuilder/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/idpbuilder/setup.md -------------------------------------------------------------------------------- /docs/docs/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/index.md -------------------------------------------------------------------------------- /docs/docs/getting-started/kind/configure-agent-secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/kind/configure-agent-secrets.md -------------------------------------------------------------------------------- /docs/docs/getting-started/kind/configure-llms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/kind/configure-llms.md -------------------------------------------------------------------------------- /docs/docs/getting-started/kind/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/kind/setup.md -------------------------------------------------------------------------------- /docs/docs/getting-started/next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/next-steps.md -------------------------------------------------------------------------------- /docs/docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/docs/getting-started/user-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/getting-started/user-interfaces.md -------------------------------------------------------------------------------- /docs/docs/images/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/images/intro.svg -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/installation/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/installation/_category_.json -------------------------------------------------------------------------------- /docs/docs/installation/docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/installation/docker-compose.md -------------------------------------------------------------------------------- /docs/docs/installation/eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/installation/eks.md -------------------------------------------------------------------------------- /docs/docs/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/installation/index.md -------------------------------------------------------------------------------- /docs/docs/installation/kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/installation/kind.md -------------------------------------------------------------------------------- /docs/docs/knowledge_bases/images/rag-agent-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/knowledge_bases/images/rag-agent-arch.svg -------------------------------------------------------------------------------- /docs/docs/knowledge_bases/images/rag-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/knowledge_bases/images/rag-arch.svg -------------------------------------------------------------------------------- /docs/docs/knowledge_bases/images/rag-ingestion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/knowledge_bases/images/rag-ingestion.svg -------------------------------------------------------------------------------- /docs/docs/knowledge_bases/images/rag_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/knowledge_bases/images/rag_gif.gif -------------------------------------------------------------------------------- /docs/docs/knowledge_bases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/knowledge_bases/index.md -------------------------------------------------------------------------------- /docs/docs/prompt-library/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/prompt-library/_category_.json -------------------------------------------------------------------------------- /docs/docs/prompt-library/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/prompt-library/index.md -------------------------------------------------------------------------------- /docs/docs/releases/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/releases/_category_.json -------------------------------------------------------------------------------- /docs/docs/releases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/releases/index.md -------------------------------------------------------------------------------- /docs/docs/security/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/security/_category_.json -------------------------------------------------------------------------------- /docs/docs/security/a2a-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/security/a2a-auth.md -------------------------------------------------------------------------------- /docs/docs/security/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/security/index.md -------------------------------------------------------------------------------- /docs/docs/tools-utils/agent-chat-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/tools-utils/agent-chat-cli.md -------------------------------------------------------------------------------- /docs/docs/tools-utils/agent-forge-backstage-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/tools-utils/agent-forge-backstage-plugin.md -------------------------------------------------------------------------------- /docs/docs/tools-utils/cnoe-agent-utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/tools-utils/cnoe-agent-utils.md -------------------------------------------------------------------------------- /docs/docs/tools-utils/openapi-mcp-codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/tools-utils/openapi-mcp-codegen.md -------------------------------------------------------------------------------- /docs/docs/usecases/incident-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/usecases/incident-engineer.md -------------------------------------------------------------------------------- /docs/docs/usecases/platform-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/usecases/platform-engineer.md -------------------------------------------------------------------------------- /docs/docs/usecases/product-owner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/usecases/product-owner.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/README.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/flyer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/flyer.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/a2a-ref.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/a2a-ref.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/agent-anatomy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/agent-anatomy.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/argocd-vault-sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/argocd-vault-sync.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/badge-expert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/badge-expert.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/badge-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/badge-explorer.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/badge-improver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/badge-improver.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/badge-master.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/badge-master.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/caipe-repo-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/caipe-repo-qr.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/caipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/caipe.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/chat-cli-token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/chat-cli-token.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/langfuse-copy-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/langfuse-copy-keys.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/langfuse-create-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/langfuse-create-keys.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mas-deep-agents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mas-deep-agents.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mas-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mas-network.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mas-supervisor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mas-supervisor.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mcp.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mission-control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mission-control.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mission2-http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mission2-http.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mission2-stdio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mission2-stdio.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mission2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mission2.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mission3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mission3.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/mission6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/mission6.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/rag-agent-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/rag-agent-arch.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/rag-ingestion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/rag-ingestion.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/rag-overview-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/rag-overview-arch.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/rag-ui-screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/rag-ui-screenshot.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/react-agent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/react-agent.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/run-in-terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/run-in-terminal.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/vault-secrets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/vault-secrets.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/images/workshop_flyer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/images/workshop_flyer.svg -------------------------------------------------------------------------------- /docs/docs/workshop-archive/mission1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/mission1.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/mission2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/mission2.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/mission3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/mission3.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/mission4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/mission4.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/mission6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/mission6.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/mission7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/mission7.md -------------------------------------------------------------------------------- /docs/docs/workshop-archive/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop-archive/overview.md -------------------------------------------------------------------------------- /docs/docs/workshop/00-caipeintro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/00-caipeintro.md -------------------------------------------------------------------------------- /docs/docs/workshop/10-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/10-agent.md -------------------------------------------------------------------------------- /docs/docs/workshop/1000-conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/1000-conclusion.md -------------------------------------------------------------------------------- /docs/docs/workshop/20-mas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/20-mas.md -------------------------------------------------------------------------------- /docs/docs/workshop/30-rag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/30-rag.md -------------------------------------------------------------------------------- /docs/docs/workshop/40-idpbuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/40-idpbuilder.md -------------------------------------------------------------------------------- /docs/docs/workshop/50-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/50-tracing.md -------------------------------------------------------------------------------- /docs/docs/workshop/images/a2a-ref.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/a2a-ref.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/agent-anatomy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/agent-anatomy.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/argocd-vault-sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/argocd-vault-sync.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/badge-expert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/badge-expert.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/badge-explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/badge-explorer.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/badge-improver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/badge-improver.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/badge-master.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/badge-master.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/caipe-repo-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/caipe-repo-qr.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/caipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/caipe.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/chat-cli-token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/chat-cli-token.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/get-involved-community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/get-involved-community.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/idpbuilder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/idpbuilder.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/langfuse-copy-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/langfuse-copy-keys.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/langfuse-create-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/langfuse-create-keys.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/langfuse-create-new-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/langfuse-create-new-project.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/langfuse-new-project-userid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/langfuse-new-project-userid.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mas-deep-agents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mas-deep-agents.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mas-hierarchical-supervisor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mas-hierarchical-supervisor.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mas-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mas-network.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mas-supervisor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mas-supervisor.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mas_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mas_architecture.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mas_system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mas_system.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mcp.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mission-control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mission-control.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mission2-http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mission2-http.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mission2-stdio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mission2-stdio.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mission2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mission2.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mission3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mission3.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/mission6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/mission6.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/rag-agent-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/rag-agent-arch.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/rag-ingestion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/rag-ingestion.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/rag-overview-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/rag-overview-arch.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/rag-ui-screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/rag-ui-screenshot.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/react-agent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/react-agent.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/run-in-terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/run-in-terminal.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/vault-secrets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/vault-secrets.svg -------------------------------------------------------------------------------- /docs/docs/workshop/images/workshop_flyer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docs/workshop/images/workshop_flyer.svg -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /evals/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/.dockerignore -------------------------------------------------------------------------------- /evals/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/.gitignore -------------------------------------------------------------------------------- /evals/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/Dockerfile -------------------------------------------------------------------------------- /evals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/README.md -------------------------------------------------------------------------------- /evals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/__init__.py -------------------------------------------------------------------------------- /evals/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/clients/__init__.py -------------------------------------------------------------------------------- /evals/clients/eval_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/clients/eval_client.py -------------------------------------------------------------------------------- /evals/datasets/multi_agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/datasets/multi_agent.yaml -------------------------------------------------------------------------------- /evals/datasets/single_agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/datasets/single_agent.yaml -------------------------------------------------------------------------------- /evals/evaluators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/evaluators/__init__.py -------------------------------------------------------------------------------- /evals/evaluators/routing_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/evaluators/routing_evaluator.py -------------------------------------------------------------------------------- /evals/evaluators/tool_match_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/evaluators/tool_match_evaluator.py -------------------------------------------------------------------------------- /evals/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/models/__init__.py -------------------------------------------------------------------------------- /evals/models/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/models/dataset.py -------------------------------------------------------------------------------- /evals/models/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/models/evaluation.py -------------------------------------------------------------------------------- /evals/prompts/create_operations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/prompts/create_operations.yaml -------------------------------------------------------------------------------- /evals/prompts/eval_prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/prompts/eval_prompts.yaml -------------------------------------------------------------------------------- /evals/prompts/read_operations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/prompts/read_operations.yaml -------------------------------------------------------------------------------- /evals/prompts/update_operations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/prompts/update_operations.yaml -------------------------------------------------------------------------------- /evals/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/pyproject.toml -------------------------------------------------------------------------------- /evals/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/runner.py -------------------------------------------------------------------------------- /evals/tests/save_trace_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/tests/save_trace_utility.py -------------------------------------------------------------------------------- /evals/tests/test_trace_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/tests/test_trace_extractor.py -------------------------------------------------------------------------------- /evals/tests/test_trace_tool_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/tests/test_trace_tool_calls.py -------------------------------------------------------------------------------- /evals/trace_analysis/TRACE_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/trace_analysis/TRACE_STRUCTURE.md -------------------------------------------------------------------------------- /evals/trace_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/trace_analysis/__init__.py -------------------------------------------------------------------------------- /evals/trace_analysis/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/trace_analysis/extractor.py -------------------------------------------------------------------------------- /evals/upload_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/upload_dataset.py -------------------------------------------------------------------------------- /evals/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/uv.lock -------------------------------------------------------------------------------- /evals/webhook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/webhook/__init__.py -------------------------------------------------------------------------------- /evals/webhook/langfuse_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/evals/webhook/langfuse_webhook.py -------------------------------------------------------------------------------- /integration/EXECUTOR_TESTS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/EXECUTOR_TESTS_README.md -------------------------------------------------------------------------------- /integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/README.md -------------------------------------------------------------------------------- /integration/STREAMING_TESTS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/STREAMING_TESTS_README.md -------------------------------------------------------------------------------- /integration/a2a_client_integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/a2a_client_integration_test.py -------------------------------------------------------------------------------- /integration/comprehensive_routing_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/comprehensive_routing_test.sh -------------------------------------------------------------------------------- /integration/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/pytest.ini -------------------------------------------------------------------------------- /integration/quick_routing_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/quick_routing_test.sh -------------------------------------------------------------------------------- /integration/reports/PLATFORM_STATUS_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/reports/PLATFORM_STATUS_SUMMARY.md -------------------------------------------------------------------------------- /integration/reports/agent_test_report_20251023_162028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/reports/agent_test_report_20251023_162028.md -------------------------------------------------------------------------------- /integration/reports/agent_test_report_20251023_162334.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/reports/agent_test_report_20251023_162334.md -------------------------------------------------------------------------------- /integration/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/requirements.txt -------------------------------------------------------------------------------- /integration/test-prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test-prompts.txt -------------------------------------------------------------------------------- /integration/test_all_agents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_all_agents.sh -------------------------------------------------------------------------------- /integration/test_all_streaming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_all_streaming.sh -------------------------------------------------------------------------------- /integration/test_execution_plan_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_execution_plan_streaming.py -------------------------------------------------------------------------------- /integration/test_incident_engineering_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_incident_engineering_prompt.py -------------------------------------------------------------------------------- /integration/test_platform_engineer_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_platform_engineer_executor.py -------------------------------------------------------------------------------- /integration/test_platform_engineer_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_platform_engineer_streaming.py -------------------------------------------------------------------------------- /integration/test_prompts_argocd_sanity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_prompts_argocd_sanity.yaml -------------------------------------------------------------------------------- /integration/test_prompts_detailed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_prompts_detailed.yaml -------------------------------------------------------------------------------- /integration/test_prompts_explicit_todos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_prompts_explicit_todos.yaml -------------------------------------------------------------------------------- /integration/test_prompts_quick_sanity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_prompts_quick_sanity.yaml -------------------------------------------------------------------------------- /integration/test_prompts_todo_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_prompts_todo_list.yaml -------------------------------------------------------------------------------- /integration/test_rag_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_rag_streaming.py -------------------------------------------------------------------------------- /integration/test_routing_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/test_routing_modes.py -------------------------------------------------------------------------------- /integration/tests/agent_integration_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/tests/agent_integration_test.sh -------------------------------------------------------------------------------- /integration/verify_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/integration/verify_setup.py -------------------------------------------------------------------------------- /persona.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/persona.yaml -------------------------------------------------------------------------------- /profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/profiles/README.md -------------------------------------------------------------------------------- /prompt_config.yaml: -------------------------------------------------------------------------------- 1 | charts/ai-platform-engineering/data/prompt_config.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/add-new-agent-helm-chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/scripts/add-new-agent-helm-chart.py -------------------------------------------------------------------------------- /scripts/analyze_accumulation_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/scripts/analyze_accumulation_flow.py -------------------------------------------------------------------------------- /scripts/generate-docker-compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/scripts/generate-docker-compose.py -------------------------------------------------------------------------------- /scripts/test_generate_docker_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/scripts/test_generate_docker_compose.py -------------------------------------------------------------------------------- /scripts/validate_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/scripts/validate_artifacts.py -------------------------------------------------------------------------------- /slim-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/slim-config.yaml -------------------------------------------------------------------------------- /test_argocd_pagination.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/test_argocd_pagination.sh -------------------------------------------------------------------------------- /tests/test_platform_engineer_executor_a2a_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/tests/test_platform_engineer_executor_a2a_streaming.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/uv.lock -------------------------------------------------------------------------------- /workshop/docker-compose.dev.override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/workshop/docker-compose.dev.override.yaml -------------------------------------------------------------------------------- /workshop/docker-compose.mission2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/workshop/docker-compose.mission2.yaml -------------------------------------------------------------------------------- /workshop/docker-compose.mission3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/workshop/docker-compose.mission3.yaml -------------------------------------------------------------------------------- /workshop/docker-compose.mission4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/workshop/docker-compose.mission4.yaml -------------------------------------------------------------------------------- /workshop/docker-compose.mission7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/workshop/docker-compose.mission7.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnoe-io/ai-platform-engineering/HEAD/yarn.lock --------------------------------------------------------------------------------