agent-actions 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agent_actions-0.1.0/.changes/header.tpl.md +7 -0
- agent_actions-0.1.0/.changes/unreleased/.gitkeep +0 -0
- agent_actions-0.1.0/.changes/unreleased/Enhancement or New Feature-20260327-081325.yaml +3 -0
- agent_actions-0.1.0/.changes/unreleased/Enhancement or New Feature-20260327-143000.yaml +3 -0
- agent_actions-0.1.0/.changie.yaml +32 -0
- agent_actions-0.1.0/.gitignore +45 -0
- agent_actions-0.1.0/.pre-commit-config.yaml +21 -0
- agent_actions-0.1.0/AGENTS.md +296 -0
- agent_actions-0.1.0/CHANGELOG.md +27 -0
- agent_actions-0.1.0/CODE_OF_CONDUCT.md +92 -0
- agent_actions-0.1.0/CONTRIBUTING.md +344 -0
- agent_actions-0.1.0/LICENSE +191 -0
- agent_actions-0.1.0/PKG-INFO +191 -0
- agent_actions-0.1.0/README.md +124 -0
- agent_actions-0.1.0/RELEASING.md +74 -0
- agent_actions-0.1.0/SECURITY.md +51 -0
- agent_actions-0.1.0/Taskfile.yml +102 -0
- agent_actions-0.1.0/agent_actions/_MANIFEST.md +29 -0
- agent_actions-0.1.0/agent_actions/__init__.py +18 -0
- agent_actions-0.1.0/agent_actions/__version__.py +3 -0
- agent_actions-0.1.0/agent_actions/cli/_MANIFEST.md +86 -0
- agent_actions-0.1.0/agent_actions/cli/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/cli/clean.py +40 -0
- agent_actions-0.1.0/agent_actions/cli/cli_decorators.py +66 -0
- agent_actions-0.1.0/agent_actions/cli/compile.py +161 -0
- agent_actions-0.1.0/agent_actions/cli/docs.py +167 -0
- agent_actions-0.1.0/agent_actions/cli/init.py +381 -0
- agent_actions-0.1.0/agent_actions/cli/inspect.py +29 -0
- agent_actions-0.1.0/agent_actions/cli/inspect_action.py +332 -0
- agent_actions-0.1.0/agent_actions/cli/inspect_base.py +159 -0
- agent_actions-0.1.0/agent_actions/cli/inspect_deps.py +105 -0
- agent_actions-0.1.0/agent_actions/cli/inspect_graph.py +124 -0
- agent_actions-0.1.0/agent_actions/cli/list_udfs.py +99 -0
- agent_actions-0.1.0/agent_actions/cli/main.py +214 -0
- agent_actions-0.1.0/agent_actions/cli/preview.py +269 -0
- agent_actions-0.1.0/agent_actions/cli/renderers/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/cli/renderers/__init__.py +7 -0
- agent_actions-0.1.0/agent_actions/cli/renderers/schema_renderer.py +193 -0
- agent_actions-0.1.0/agent_actions/cli/run.py +225 -0
- agent_actions-0.1.0/agent_actions/cli/schema.py +174 -0
- agent_actions-0.1.0/agent_actions/cli/skills.py +183 -0
- agent_actions-0.1.0/agent_actions/cli/status.py +65 -0
- agent_actions-0.1.0/agent_actions/config/_MANIFEST.md +85 -0
- agent_actions-0.1.0/agent_actions/config/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/config/defaults.py +45 -0
- agent_actions-0.1.0/agent_actions/config/di/_MANIFEST.md +56 -0
- agent_actions-0.1.0/agent_actions/config/di/application.py +95 -0
- agent_actions-0.1.0/agent_actions/config/di/configurator.py +126 -0
- agent_actions-0.1.0/agent_actions/config/di/container.py +287 -0
- agent_actions-0.1.0/agent_actions/config/di/types.py +33 -0
- agent_actions-0.1.0/agent_actions/config/environment.py +99 -0
- agent_actions-0.1.0/agent_actions/config/factory.py +41 -0
- agent_actions-0.1.0/agent_actions/config/init.py +99 -0
- agent_actions-0.1.0/agent_actions/config/interfaces.py +109 -0
- agent_actions-0.1.0/agent_actions/config/manager.py +479 -0
- agent_actions-0.1.0/agent_actions/config/path_config.py +129 -0
- agent_actions-0.1.0/agent_actions/config/paths.py +338 -0
- agent_actions-0.1.0/agent_actions/config/project_paths.py +232 -0
- agent_actions-0.1.0/agent_actions/config/schema.py +489 -0
- agent_actions-0.1.0/agent_actions/config/types.py +237 -0
- agent_actions-0.1.0/agent_actions/errors/_MANIFEST.md +62 -0
- agent_actions-0.1.0/agent_actions/errors/__init__.py +127 -0
- agent_actions-0.1.0/agent_actions/errors/base.py +44 -0
- agent_actions-0.1.0/agent_actions/errors/common.py +13 -0
- agent_actions-0.1.0/agent_actions/errors/configuration.py +117 -0
- agent_actions-0.1.0/agent_actions/errors/external_services.py +54 -0
- agent_actions-0.1.0/agent_actions/errors/filesystem.py +27 -0
- agent_actions-0.1.0/agent_actions/errors/operations.py +82 -0
- agent_actions-0.1.0/agent_actions/errors/preflight.py +234 -0
- agent_actions-0.1.0/agent_actions/errors/processing.py +39 -0
- agent_actions-0.1.0/agent_actions/errors/resources.py +15 -0
- agent_actions-0.1.0/agent_actions/errors/validation.py +118 -0
- agent_actions-0.1.0/agent_actions/guards/_MANIFEST.md +28 -0
- agent_actions-0.1.0/agent_actions/guards/__init__.py +23 -0
- agent_actions-0.1.0/agent_actions/guards/consolidated_guard.py +112 -0
- agent_actions-0.1.0/agent_actions/guards/guard_parser.py +189 -0
- agent_actions-0.1.0/agent_actions/input/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/input/context/_MANIFEST.md +19 -0
- agent_actions-0.1.0/agent_actions/input/context/__init__.py +12 -0
- agent_actions-0.1.0/agent_actions/input/context/context_preprocessor.py +26 -0
- agent_actions-0.1.0/agent_actions/input/context/historical.py +346 -0
- agent_actions-0.1.0/agent_actions/input/context/normalizer.py +131 -0
- agent_actions-0.1.0/agent_actions/input/loaders/_MANIFEST.md +23 -0
- agent_actions-0.1.0/agent_actions/input/loaders/__init__.py +33 -0
- agent_actions-0.1.0/agent_actions/input/loaders/base.py +123 -0
- agent_actions-0.1.0/agent_actions/input/loaders/data_source.py +276 -0
- agent_actions-0.1.0/agent_actions/input/loaders/file_reader.py +116 -0
- agent_actions-0.1.0/agent_actions/input/loaders/json.py +67 -0
- agent_actions-0.1.0/agent_actions/input/loaders/source_data.py +54 -0
- agent_actions-0.1.0/agent_actions/input/loaders/tabular.py +74 -0
- agent_actions-0.1.0/agent_actions/input/loaders/text.py +35 -0
- agent_actions-0.1.0/agent_actions/input/loaders/udf.py +106 -0
- agent_actions-0.1.0/agent_actions/input/loaders/xml.py +74 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/_MANIFEST.md +23 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/__init__.py +66 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/errors.py +15 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/field_chunking.py +339 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/strategies/_MANIFEST.md +17 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/strategies/__init__.py +39 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/strategies/chunking_strategies.py +84 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/strategies/fallback_strategies.py +140 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/strategies/metadata_strategies.py +115 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/chunking/strategies/validation.py +124 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/_MANIFEST.md +19 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/__init__.py +47 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/context_provider.py +138 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/exceptions.py +23 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/reference_parser.py +226 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/resolver.py +228 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/schema_field_validator.py +132 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/field_resolution/validator.py +191 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/filtering/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/filtering/__init__.py +29 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/filtering/evaluator.py +254 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/filtering/guard_filter.py +243 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/parsing/_MANIFEST.md +16 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/parsing/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/parsing/ast_nodes.py +305 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/parsing/operators.py +214 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/parsing/parser.py +428 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/processing/_MANIFEST.md +14 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/processing/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/processing/data_processor.py +63 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/staging/_MANIFEST.md +26 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/staging/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/staging/initial_pipeline.py +706 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/transformation/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/transformation/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/transformation/string_transformer.py +275 -0
- agent_actions-0.1.0/agent_actions/input/preprocessing/transformation/transformer.py +82 -0
- agent_actions-0.1.0/agent_actions/llm/_MANIFEST.md +16 -0
- agent_actions-0.1.0/agent_actions/llm/config/_MANIFEST.md +11 -0
- agent_actions-0.1.0/agent_actions/llm/config/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/llm/config/vendor.py +223 -0
- agent_actions-0.1.0/agent_actions/llm/providers/_MANIFEST.md +29 -0
- agent_actions-0.1.0/agent_actions/llm/providers/__init__.py +3 -0
- agent_actions-0.1.0/agent_actions/llm/providers/agac/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/llm/providers/agac/__init__.py +23 -0
- agent_actions-0.1.0/agent_actions/llm/providers/agac/batch_client.py +301 -0
- agent_actions-0.1.0/agent_actions/llm/providers/agac/client.py +253 -0
- agent_actions-0.1.0/agent_actions/llm/providers/agac/fake_data.py +836 -0
- agent_actions-0.1.0/agent_actions/llm/providers/anthropic/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/llm/providers/anthropic/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/llm/providers/anthropic/batch_client.py +457 -0
- agent_actions-0.1.0/agent_actions/llm/providers/anthropic/client.py +220 -0
- agent_actions-0.1.0/agent_actions/llm/providers/batch_base.py +447 -0
- agent_actions-0.1.0/agent_actions/llm/providers/batch_client_factory.py +213 -0
- agent_actions-0.1.0/agent_actions/llm/providers/client_base.py +181 -0
- agent_actions-0.1.0/agent_actions/llm/providers/cohere/_MANIFEST.md +11 -0
- agent_actions-0.1.0/agent_actions/llm/providers/cohere/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/llm/providers/cohere/client.py +238 -0
- agent_actions-0.1.0/agent_actions/llm/providers/error_wrapper.py +197 -0
- agent_actions-0.1.0/agent_actions/llm/providers/failure_injection.py +159 -0
- agent_actions-0.1.0/agent_actions/llm/providers/gemini/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/llm/providers/gemini/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/llm/providers/gemini/batch_client.py +243 -0
- agent_actions-0.1.0/agent_actions/llm/providers/gemini/client.py +212 -0
- agent_actions-0.1.0/agent_actions/llm/providers/generation_params.py +51 -0
- agent_actions-0.1.0/agent_actions/llm/providers/groq/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/llm/providers/groq/__init__.py +11 -0
- agent_actions-0.1.0/agent_actions/llm/providers/groq/batch_client.py +211 -0
- agent_actions-0.1.0/agent_actions/llm/providers/groq/client.py +214 -0
- agent_actions-0.1.0/agent_actions/llm/providers/hitl/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/llm/providers/hitl/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/llm/providers/hitl/client.py +112 -0
- agent_actions-0.1.0/agent_actions/llm/providers/hitl/server.py +636 -0
- agent_actions-0.1.0/agent_actions/llm/providers/hitl/templates/approval.html +1764 -0
- agent_actions-0.1.0/agent_actions/llm/providers/mistral/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/llm/providers/mistral/__init__.py +10 -0
- agent_actions-0.1.0/agent_actions/llm/providers/mistral/batch_client.py +248 -0
- agent_actions-0.1.0/agent_actions/llm/providers/mistral/client.py +225 -0
- agent_actions-0.1.0/agent_actions/llm/providers/mixins.py +175 -0
- agent_actions-0.1.0/agent_actions/llm/providers/ollama/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/llm/providers/ollama/__init__.py +10 -0
- agent_actions-0.1.0/agent_actions/llm/providers/ollama/batch_client.py +360 -0
- agent_actions-0.1.0/agent_actions/llm/providers/ollama/client.py +280 -0
- agent_actions-0.1.0/agent_actions/llm/providers/ollama/failure_injection.py +126 -0
- agent_actions-0.1.0/agent_actions/llm/providers/openai/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/llm/providers/openai/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/llm/providers/openai/batch_client.py +171 -0
- agent_actions-0.1.0/agent_actions/llm/providers/openai/client.py +230 -0
- agent_actions-0.1.0/agent_actions/llm/providers/tools/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/llm/providers/tools/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/llm/providers/tools/client.py +98 -0
- agent_actions-0.1.0/agent_actions/llm/providers/usage_tracker.py +54 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/_MANIFEST.md +22 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/builder.py +135 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/cleaner.py +71 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/handlers.py +84 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/output.py +91 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/services/_MANIFEST.md +14 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/services/__init__.py +11 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/services/context.py +63 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/services/invocation.py +119 -0
- agent_actions-0.1.0/agent_actions/llm/realtime/services/prompt_service.py +48 -0
- agent_actions-0.1.0/agent_actions/logging/_MANIFEST.md +26 -0
- agent_actions-0.1.0/agent_actions/logging/__init__.py +33 -0
- agent_actions-0.1.0/agent_actions/logging/config.py +106 -0
- agent_actions-0.1.0/agent_actions/logging/core/_MANIFEST.md +21 -0
- agent_actions-0.1.0/agent_actions/logging/core/__init__.py +41 -0
- agent_actions-0.1.0/agent_actions/logging/core/_compat.py +14 -0
- agent_actions-0.1.0/agent_actions/logging/core/events.py +100 -0
- agent_actions-0.1.0/agent_actions/logging/core/handlers/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/logging/core/handlers/__init__.py +21 -0
- agent_actions-0.1.0/agent_actions/logging/core/handlers/bridge.py +153 -0
- agent_actions-0.1.0/agent_actions/logging/core/handlers/console.py +101 -0
- agent_actions-0.1.0/agent_actions/logging/core/handlers/context_debug.py +310 -0
- agent_actions-0.1.0/agent_actions/logging/core/handlers/json_file.py +125 -0
- agent_actions-0.1.0/agent_actions/logging/core/manager.py +203 -0
- agent_actions-0.1.0/agent_actions/logging/core/protocols.py +63 -0
- agent_actions-0.1.0/agent_actions/logging/errors/_MANIFEST.md +20 -0
- agent_actions-0.1.0/agent_actions/logging/errors/__init__.py +40 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/_MANIFEST.md +21 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/__init__.py +25 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/api.py +61 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/authentication.py +56 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/base.py +35 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/configuration.py +158 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/file.py +64 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/function.py +88 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/generic.py +38 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/model.py +72 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/template.py +183 -0
- agent_actions-0.1.0/agent_actions/logging/errors/formatters/yaml.py +138 -0
- agent_actions-0.1.0/agent_actions/logging/errors/services/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/logging/errors/services/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/logging/errors/services/context.py +70 -0
- agent_actions-0.1.0/agent_actions/logging/errors/translator.py +66 -0
- agent_actions-0.1.0/agent_actions/logging/errors/user_error.py +116 -0
- agent_actions-0.1.0/agent_actions/logging/events/_MANIFEST.md +27 -0
- agent_actions-0.1.0/agent_actions/logging/events/__init__.py +272 -0
- agent_actions-0.1.0/agent_actions/logging/events/batch_events.py +309 -0
- agent_actions-0.1.0/agent_actions/logging/events/cache_events.py +169 -0
- agent_actions-0.1.0/agent_actions/logging/events/data_pipeline_events.py +511 -0
- agent_actions-0.1.0/agent_actions/logging/events/formatters.py +189 -0
- agent_actions-0.1.0/agent_actions/logging/events/handlers/_MANIFEST.md +11 -0
- agent_actions-0.1.0/agent_actions/logging/events/handlers/__init__.py +9 -0
- agent_actions-0.1.0/agent_actions/logging/events/handlers/run_results.py +288 -0
- agent_actions-0.1.0/agent_actions/logging/events/initialization_events.py +496 -0
- agent_actions-0.1.0/agent_actions/logging/events/io_events.py +345 -0
- agent_actions-0.1.0/agent_actions/logging/events/llm_events.py +250 -0
- agent_actions-0.1.0/agent_actions/logging/events/types.py +71 -0
- agent_actions-0.1.0/agent_actions/logging/events/validation_events.py +313 -0
- agent_actions-0.1.0/agent_actions/logging/events/workflow_events.py +255 -0
- agent_actions-0.1.0/agent_actions/logging/factory.py +319 -0
- agent_actions-0.1.0/agent_actions/logging/filters.py +168 -0
- agent_actions-0.1.0/agent_actions/logging/formatters.py +106 -0
- agent_actions-0.1.0/agent_actions/models/_MANIFEST.md +20 -0
- agent_actions-0.1.0/agent_actions/models/__init__.py +17 -0
- agent_actions-0.1.0/agent_actions/models/action_schema.py +118 -0
- agent_actions-0.1.0/agent_actions/output/_MANIFEST.md +54 -0
- agent_actions-0.1.0/agent_actions/output/__init__.py +7 -0
- agent_actions-0.1.0/agent_actions/output/response/_MANIFEST.md +28 -0
- agent_actions-0.1.0/agent_actions/output/response/__init__.py +11 -0
- agent_actions-0.1.0/agent_actions/output/response/config_fields.py +129 -0
- agent_actions-0.1.0/agent_actions/output/response/config_schema.py +247 -0
- agent_actions-0.1.0/agent_actions/output/response/context_data.py +162 -0
- agent_actions-0.1.0/agent_actions/output/response/dispatch_injection.py +100 -0
- agent_actions-0.1.0/agent_actions/output/response/expander.py +421 -0
- agent_actions-0.1.0/agent_actions/output/response/expander_action_types.py +140 -0
- agent_actions-0.1.0/agent_actions/output/response/expander_guard_validation.py +151 -0
- agent_actions-0.1.0/agent_actions/output/response/expander_merge.py +66 -0
- agent_actions-0.1.0/agent_actions/output/response/expander_schema.py +105 -0
- agent_actions-0.1.0/agent_actions/output/response/expander_validation.py +100 -0
- agent_actions-0.1.0/agent_actions/output/response/loader.py +235 -0
- agent_actions-0.1.0/agent_actions/output/response/response_builder.py +244 -0
- agent_actions-0.1.0/agent_actions/output/response/schema.py +121 -0
- agent_actions-0.1.0/agent_actions/output/response/schema_conversion.py +138 -0
- agent_actions-0.1.0/agent_actions/output/response/vendor_compilation.py +113 -0
- agent_actions-0.1.0/agent_actions/output/saver.py +85 -0
- agent_actions-0.1.0/agent_actions/output/writer.py +161 -0
- agent_actions-0.1.0/agent_actions/processing/_MANIFEST.md +28 -0
- agent_actions-0.1.0/agent_actions/processing/__init__.py +72 -0
- agent_actions-0.1.0/agent_actions/processing/batch_context_adapter.py +50 -0
- agent_actions-0.1.0/agent_actions/processing/batch_processor.py +35 -0
- agent_actions-0.1.0/agent_actions/processing/enrichment.py +245 -0
- agent_actions-0.1.0/agent_actions/processing/error_handling.py +185 -0
- agent_actions-0.1.0/agent_actions/processing/exhausted_builder.py +75 -0
- agent_actions-0.1.0/agent_actions/processing/helpers.py +228 -0
- agent_actions-0.1.0/agent_actions/processing/invocation/__init__.py +17 -0
- agent_actions-0.1.0/agent_actions/processing/invocation/batch.py +172 -0
- agent_actions-0.1.0/agent_actions/processing/invocation/factory.py +105 -0
- agent_actions-0.1.0/agent_actions/processing/invocation/online.py +215 -0
- agent_actions-0.1.0/agent_actions/processing/invocation/result.py +84 -0
- agent_actions-0.1.0/agent_actions/processing/invocation/strategy.py +47 -0
- agent_actions-0.1.0/agent_actions/processing/prepared_task.py +102 -0
- agent_actions-0.1.0/agent_actions/processing/processor.py +11 -0
- agent_actions-0.1.0/agent_actions/processing/record_processor.py +475 -0
- agent_actions-0.1.0/agent_actions/processing/recovery/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/processing/recovery/reprompt.py +221 -0
- agent_actions-0.1.0/agent_actions/processing/recovery/response_validator.py +206 -0
- agent_actions-0.1.0/agent_actions/processing/recovery/retry.py +169 -0
- agent_actions-0.1.0/agent_actions/processing/recovery/validation.py +102 -0
- agent_actions-0.1.0/agent_actions/processing/result_collector.py +312 -0
- agent_actions-0.1.0/agent_actions/processing/task_preparer.py +273 -0
- agent_actions-0.1.0/agent_actions/processing/types.py +304 -0
- agent_actions-0.1.0/agent_actions/prompt/_MANIFEST.md +25 -0
- agent_actions-0.1.0/agent_actions/prompt/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/prompt/context/_MANIFEST.md +21 -0
- agent_actions-0.1.0/agent_actions/prompt/context/__init__.py +0 -0
- agent_actions-0.1.0/agent_actions/prompt/context/builder.py +159 -0
- agent_actions-0.1.0/agent_actions/prompt/context/scope_application.py +276 -0
- agent_actions-0.1.0/agent_actions/prompt/context/scope_builder.py +485 -0
- agent_actions-0.1.0/agent_actions/prompt/context/scope_file_mode.py +359 -0
- agent_actions-0.1.0/agent_actions/prompt/context/scope_inference.py +394 -0
- agent_actions-0.1.0/agent_actions/prompt/context/scope_namespace.py +402 -0
- agent_actions-0.1.0/agent_actions/prompt/context/scope_parsing.py +217 -0
- agent_actions-0.1.0/agent_actions/prompt/context/static_loader.py +364 -0
- agent_actions-0.1.0/agent_actions/prompt/data_generator.py +132 -0
- agent_actions-0.1.0/agent_actions/prompt/formatter.py +53 -0
- agent_actions-0.1.0/agent_actions/prompt/handler.py +130 -0
- agent_actions-0.1.0/agent_actions/prompt/message_builder.py +403 -0
- agent_actions-0.1.0/agent_actions/prompt/prompt_utils.py +231 -0
- agent_actions-0.1.0/agent_actions/prompt/render_workflow.py +594 -0
- agent_actions-0.1.0/agent_actions/prompt/renderer.py +410 -0
- agent_actions-0.1.0/agent_actions/prompt/service.py +592 -0
- agent_actions-0.1.0/agent_actions/py.typed +0 -0
- agent_actions-0.1.0/agent_actions/skills/_MANIFEST.md +12 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/SKILL.md +632 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/assets/templates/udf_tool.py.template +16 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/assets/templates/workflow.yml.template +72 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/action-anatomy.md +322 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/cli-reference.md +185 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/common-pitfalls.md +268 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/context-scope-guide.md +236 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/data-flow-patterns.md +460 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/debugging-guide.md +209 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/dynamic-content-injection.md +168 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/prompt-patterns.md +274 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/udf-decorator.md +191 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/udf-patterns.md +141 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/workflow-patterns.md +385 -0
- agent_actions-0.1.0/agent_actions/skills/agent-actions-workflow/references/yaml-schema.md +323 -0
- agent_actions-0.1.0/agent_actions/storage/_MANIFEST.md +37 -0
- agent_actions-0.1.0/agent_actions/storage/__init__.py +43 -0
- agent_actions-0.1.0/agent_actions/storage/backend.py +167 -0
- agent_actions-0.1.0/agent_actions/storage/backends/_MANIFEST.md +61 -0
- agent_actions-0.1.0/agent_actions/storage/backends/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/storage/backends/sqlite_backend.py +668 -0
- agent_actions-0.1.0/agent_actions/tooling/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/tooling/code_scanner.py +201 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/_MANIFEST.md +25 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/__init__.py +7 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/build_frontend.sh +30 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/404.html +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/__next.__PAGE__.txt +10 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/__next._full.txt +23 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/__next._head.txt +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/__next._index.txt +7 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/__next._tree.txt +5 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/4d0YktLMepk0sxKgPybh_/_buildManifest.js +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/4d0YktLMepk0sxKgPybh_/_clientMiddlewareManifest.json +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/4d0YktLMepk0sxKgPybh_/_ssgManifest.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/2d13f297c980047d.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/6c9a791d4c6897f7.js +13 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/7de9141b1af425c3.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/8a5bd6fe3abc8091.css +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/96c6e1c354cc24ba.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/a6dad97d9634a72d.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/a6dad97d9634a72d.js.map +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/c7d88ff09017a546.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/dc06c1c5ffeb40aa.css +3 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/f9add08e93262f70.js +5 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/chunks/turbopack-3bf0b55177642e80.js +4 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/13bf9871fe164e7f-s.f2220059.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/3dbe685087e51055-s.7d71229e.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/3fe682a82f50d426-s.23358719.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/6bd983bd58a87a3d-s.p.cf80dd39.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/71b036adf157cdcf-s.bd5f4d11.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/89b21bb081cb7469-s.51c18f09.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_next/static/media/cc545e633e20c56d-s.f6f1950f.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found/__next._full.txt +16 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found/__next._head.txt +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found/__next._index.txt +7 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found/__next._not-found.__PAGE__.txt +5 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found/__next._not-found.txt +4 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found/__next._tree.txt +2 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found.html +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/_not-found.txt +16 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/favicon.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/icon-light.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/index.html +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/index.txt +23 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/placeholder-logo.svg +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/docs_site/placeholder.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/app/globals.css +186 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/app/layout.tsx +50 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/app/page.tsx +167 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/app-sidebar.tsx +195 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/actions-screen.tsx +722 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/catalog-screens.tsx +1189 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/data-screen.tsx +475 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/home-screen.tsx +403 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/logs-screen.tsx +1104 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/runs-screen.tsx +451 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/screens/workflows-screen.tsx +534 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/theme-provider.tsx +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/theme-toggle.tsx +82 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/accordion.tsx +58 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/alert-dialog.tsx +141 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/alert.tsx +59 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/aspect-ratio.tsx +7 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/avatar.tsx +50 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/badge.tsx +37 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/breadcrumb.tsx +115 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/button.tsx +57 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/calendar.tsx +10 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/card.tsx +79 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/carousel.tsx +262 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/chart.tsx +365 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/checkbox.tsx +30 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/collapsible.tsx +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/command.tsx +153 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/context-menu.tsx +200 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/dialog.tsx +122 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/drawer.tsx +118 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/dropdown-menu.tsx +200 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/form.tsx +178 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/hover-card.tsx +29 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/input-otp.tsx +71 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/input.tsx +22 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/label.tsx +26 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/menubar.tsx +236 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/navigation-menu.tsx +128 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/pagination.tsx +117 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/popover.tsx +31 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/progress.tsx +28 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/radio-group.tsx +44 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/resizable.tsx +45 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/scroll-area.tsx +48 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/select.tsx +160 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/separator.tsx +31 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/sheet.tsx +141 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/sidebar.tsx +771 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/skeleton.tsx +15 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/slider.tsx +28 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/sonner.tsx +31 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/switch.tsx +29 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/table.tsx +117 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/tabs.tsx +55 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/textarea.tsx +22 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/toast.tsx +129 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/toaster.tsx +35 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/toggle-group.tsx +61 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/toggle.tsx +45 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/tooltip.tsx +30 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/use-mobile.tsx +19 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/ui/use-toast.ts +191 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components/workflow-dag.tsx +230 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/components.json +21 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/hooks/use-mobile.tsx +19 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/hooks/use-toast.ts +191 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/lib/catalog-client.ts +215 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/lib/catalog-context.tsx +66 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/lib/dag-transformer.ts +142 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/lib/mock-data.ts +165 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/lib/transformers.ts +419 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/lib/utils.ts +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/next-env.d.ts +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/next.config.mjs +12 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/404.html +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/__next.__PAGE__.txt +10 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/__next._full.txt +23 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/__next._head.txt +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/__next._index.txt +7 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/__next._tree.txt +5 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/4d0YktLMepk0sxKgPybh_/_buildManifest.js +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/4d0YktLMepk0sxKgPybh_/_clientMiddlewareManifest.json +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/4d0YktLMepk0sxKgPybh_/_ssgManifest.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/2d13f297c980047d.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/6c9a791d4c6897f7.js +13 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/7de9141b1af425c3.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/8a5bd6fe3abc8091.css +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/96c6e1c354cc24ba.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/a6dad97d9634a72d.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/a6dad97d9634a72d.js.map +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/c7d88ff09017a546.js +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/dc06c1c5ffeb40aa.css +3 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/f9add08e93262f70.js +5 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/chunks/turbopack-3bf0b55177642e80.js +4 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/13bf9871fe164e7f-s.f2220059.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/3dbe685087e51055-s.7d71229e.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/3fe682a82f50d426-s.23358719.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/6bd983bd58a87a3d-s.p.cf80dd39.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/71b036adf157cdcf-s.bd5f4d11.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/89b21bb081cb7469-s.51c18f09.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_next/static/media/cc545e633e20c56d-s.f6f1950f.woff2 +0 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found/__next._full.txt +16 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found/__next._head.txt +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found/__next._index.txt +7 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found/__next._not-found.__PAGE__.txt +5 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found/__next._not-found.txt +4 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found/__next._tree.txt +2 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found.html +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/_not-found.txt +16 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/favicon.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/icon-light.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/index.html +1 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/index.txt +23 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/placeholder-logo.svg +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/out/placeholder.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/package-lock.json +6886 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/package.json +75 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/pnpm-lock.yaml +3900 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/postcss.config.mjs +8 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/public/favicon.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/public/icon-light.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/public/placeholder-logo.svg +11 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/public/placeholder.svg +6 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/styles/globals.css +94 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/tailwind.config.ts +117 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/frontend/tsconfig.json +33 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/generator.py +458 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/parser.py +240 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/run_tracker.py +466 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/scanner/__init__.py +137 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/scanner/component_scanners.py +535 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/scanner/data_scanners.py +492 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/server.py +113 -0
- agent_actions-0.1.0/agent_actions/tooling/docs/site/.gitkeep +0 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/_MANIFEST.md +16 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/completions.py +82 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/diagnostics.py +199 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/handlers.py +149 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/indexer.py +622 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/models.py +200 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/resolver.py +187 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/server.py +711 -0
- agent_actions-0.1.0/agent_actions/tooling/lsp/utils.py +65 -0
- agent_actions-0.1.0/agent_actions/utils/_MANIFEST.md +36 -0
- agent_actions-0.1.0/agent_actions/utils/__init__.py +15 -0
- agent_actions-0.1.0/agent_actions/utils/constants.py +124 -0
- agent_actions-0.1.0/agent_actions/utils/correlation/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/utils/correlation/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/utils/correlation/version_id.py +124 -0
- agent_actions-0.1.0/agent_actions/utils/dict.py +35 -0
- agent_actions-0.1.0/agent_actions/utils/error_handler.py +105 -0
- agent_actions-0.1.0/agent_actions/utils/error_wrap.py +27 -0
- agent_actions-0.1.0/agent_actions/utils/field_management/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/utils/field_management/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/utils/field_management/manager.py +68 -0
- agent_actions-0.1.0/agent_actions/utils/file_handler.py +93 -0
- agent_actions-0.1.0/agent_actions/utils/file_utils.py +21 -0
- agent_actions-0.1.0/agent_actions/utils/graph_utils.py +56 -0
- agent_actions-0.1.0/agent_actions/utils/id_generation/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/utils/id_generation/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/utils/id_generation/generator.py +28 -0
- agent_actions-0.1.0/agent_actions/utils/lineage/_MANIFEST.md +14 -0
- agent_actions-0.1.0/agent_actions/utils/lineage/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/utils/lineage/builder.py +128 -0
- agent_actions-0.1.0/agent_actions/utils/metadata/_MANIFEST.md +14 -0
- agent_actions-0.1.0/agent_actions/utils/metadata/__init__.py +11 -0
- agent_actions-0.1.0/agent_actions/utils/metadata/extractor.py +271 -0
- agent_actions-0.1.0/agent_actions/utils/metadata/types.py +75 -0
- agent_actions-0.1.0/agent_actions/utils/module_loader.py +328 -0
- agent_actions-0.1.0/agent_actions/utils/passthrough_builder.py +78 -0
- agent_actions-0.1.0/agent_actions/utils/path_utils.py +196 -0
- agent_actions-0.1.0/agent_actions/utils/project_root.py +35 -0
- agent_actions-0.1.0/agent_actions/utils/safe_format.py +183 -0
- agent_actions-0.1.0/agent_actions/utils/schema_utils.py +48 -0
- agent_actions-0.1.0/agent_actions/utils/tools_resolver.py +72 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/_MANIFEST.md +19 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/__init__.py +5 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/passthrough.py +88 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/strategies/_MANIFEST.md +15 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/strategies/__init__.py +20 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/strategies/base.py +28 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/strategies/context_scope.py +190 -0
- agent_actions-0.1.0/agent_actions/utils/transformation/strategies/precomputed.py +79 -0
- agent_actions-0.1.0/agent_actions/utils/udf_management/_MANIFEST.md +16 -0
- agent_actions-0.1.0/agent_actions/utils/udf_management/__init__.py +22 -0
- agent_actions-0.1.0/agent_actions/utils/udf_management/registry.py +161 -0
- agent_actions-0.1.0/agent_actions/utils/udf_management/tooling.py +153 -0
- agent_actions-0.1.0/agent_actions/validation/_MANIFEST.md +35 -0
- agent_actions-0.1.0/agent_actions/validation/__init__.py +13 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/_MANIFEST.md +20 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/action_entry_structure_validator.py +21 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/action_required_fields_validator.py +29 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/action_type_specific_validator.py +103 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/base_action_validator.py +46 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/granularity_output_field_validator.py +45 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/inline_schema_validator.py +94 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/optional_field_type_validator.py +60 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/unknown_keys_detector.py +34 -0
- agent_actions-0.1.0/agent_actions/validation/action_validators/vendor_compatibility_validator.py +64 -0
- agent_actions-0.1.0/agent_actions/validation/base_validator.py +136 -0
- agent_actions-0.1.0/agent_actions/validation/batch_validator.py +9 -0
- agent_actions-0.1.0/agent_actions/validation/clean_validator.py +11 -0
- agent_actions-0.1.0/agent_actions/validation/config_validator.py +427 -0
- agent_actions-0.1.0/agent_actions/validation/init_validator.py +14 -0
- agent_actions-0.1.0/agent_actions/validation/orchestration/_MANIFEST.md +11 -0
- agent_actions-0.1.0/agent_actions/validation/orchestration/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/validation/orchestration/action_entry_validation_orchestrator.py +112 -0
- agent_actions-0.1.0/agent_actions/validation/path_validator.py +241 -0
- agent_actions-0.1.0/agent_actions/validation/preflight/_MANIFEST.md +16 -0
- agent_actions-0.1.0/agent_actions/validation/preflight/__init__.py +36 -0
- agent_actions-0.1.0/agent_actions/validation/preflight/error_formatter.py +138 -0
- agent_actions-0.1.0/agent_actions/validation/preflight/path_validator.py +160 -0
- agent_actions-0.1.0/agent_actions/validation/preflight/vendor_compatibility_validator.py +210 -0
- agent_actions-0.1.0/agent_actions/validation/project_validator.py +106 -0
- agent_actions-0.1.0/agent_actions/validation/prompt_ast.py +311 -0
- agent_actions-0.1.0/agent_actions/validation/prompt_validator.py +204 -0
- agent_actions-0.1.0/agent_actions/validation/render_validator.py +14 -0
- agent_actions-0.1.0/agent_actions/validation/run_validator.py +28 -0
- agent_actions-0.1.0/agent_actions/validation/schema_output_validator.py +319 -0
- agent_actions-0.1.0/agent_actions/validation/schema_validator.py +509 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/_MANIFEST.md +111 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/__init__.py +91 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/conflict_detector.py +363 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/data_flow_graph.py +240 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/errors.py +213 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/field_flow_analyzer.py +340 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/reference_extractor.py +321 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/schema_extractor.py +529 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/schema_structure_validator.py +481 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/type_checker.py +256 -0
- agent_actions-0.1.0/agent_actions/validation/static_analyzer/workflow_static_analyzer.py +726 -0
- agent_actions-0.1.0/agent_actions/validation/status_validator.py +11 -0
- agent_actions-0.1.0/agent_actions/validation/utils/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/validation/utils/__init__.py +1 -0
- agent_actions-0.1.0/agent_actions/validation/utils/action_config_validation_utilities.py +204 -0
- agent_actions-0.1.0/agent_actions/validation/utils/schema_type_validator.py +153 -0
- agent_actions-0.1.0/agent_actions/validation/validate_udfs.py +209 -0
- agent_actions-0.1.0/agent_actions/workflow/_MANIFEST.md +32 -0
- agent_actions-0.1.0/agent_actions/workflow/__init__.py +23 -0
- agent_actions-0.1.0/agent_actions/workflow/config_pipeline.py +134 -0
- agent_actions-0.1.0/agent_actions/workflow/coordinator.py +437 -0
- agent_actions-0.1.0/agent_actions/workflow/execution_events.py +159 -0
- agent_actions-0.1.0/agent_actions/workflow/executor.py +655 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/_MANIFEST.md +17 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/artifacts.py +124 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/batch.py +163 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/loop.py +474 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/manifest.py +380 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/output.py +429 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/skip.py +302 -0
- agent_actions-0.1.0/agent_actions/workflow/managers/state.py +120 -0
- agent_actions-0.1.0/agent_actions/workflow/merge.py +126 -0
- agent_actions-0.1.0/agent_actions/workflow/models.py +121 -0
- agent_actions-0.1.0/agent_actions/workflow/parallel/_MANIFEST.md +13 -0
- agent_actions-0.1.0/agent_actions/workflow/parallel/action_executor.py +349 -0
- agent_actions-0.1.0/agent_actions/workflow/parallel/dependency.py +270 -0
- agent_actions-0.1.0/agent_actions/workflow/pipeline.py +564 -0
- agent_actions-0.1.0/agent_actions/workflow/pipeline_file_mode.py +381 -0
- agent_actions-0.1.0/agent_actions/workflow/runner.py +472 -0
- agent_actions-0.1.0/agent_actions/workflow/runner_file_processing.py +418 -0
- agent_actions-0.1.0/agent_actions/workflow/schema_service.py +338 -0
- agent_actions-0.1.0/agent_actions/workflow/service_init.py +203 -0
- agent_actions-0.1.0/agent_actions/workflow/strategies.py +109 -0
- agent_actions-0.1.0/agent_actions/workflow/workspace_index.py +148 -0
- agent_actions-0.1.0/claude.md +1 -0
- agent_actions-0.1.0/pyproject.toml +195 -0
- agent_actions-0.1.0/pytest.ini +16 -0
- agent_actions-0.1.0/uv.lock +3863 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
7
|
+
and is generated by [Changie](https://github.com/miniscruff/changie).
|
|
File without changes
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
changesDir: .changes
|
|
2
|
+
unreleasedDir: unreleased
|
|
3
|
+
headerPath: header.tpl.md
|
|
4
|
+
changelogPath: CHANGELOG.md
|
|
5
|
+
versionExt: md
|
|
6
|
+
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
|
|
7
|
+
kindFormat: '### {{.Kind}}'
|
|
8
|
+
changeFormat: '* {{.Body}}'
|
|
9
|
+
kinds:
|
|
10
|
+
- label: Breaking Change
|
|
11
|
+
auto: major
|
|
12
|
+
- label: Enhancement or New Feature
|
|
13
|
+
auto: minor
|
|
14
|
+
- label: Under the Hood
|
|
15
|
+
auto: patch
|
|
16
|
+
- label: Bug Fix
|
|
17
|
+
auto: patch
|
|
18
|
+
- label: Security
|
|
19
|
+
auto: patch
|
|
20
|
+
newlines:
|
|
21
|
+
afterChangelogHeader: 1
|
|
22
|
+
beforeChangelogVersion: 1
|
|
23
|
+
endOfVersion: 1
|
|
24
|
+
envPrefix: CHANGIE_
|
|
25
|
+
|
|
26
|
+
replacements:
|
|
27
|
+
- path: pyproject.toml
|
|
28
|
+
find: '(?m)^version = ".*"'
|
|
29
|
+
replace: 'version = "{{.VersionNoPrefix}}"'
|
|
30
|
+
- path: agent_actions/__version__.py
|
|
31
|
+
find: '(?m)^__version__ = ".*"'
|
|
32
|
+
replace: '__version__ = "{{.VersionNoPrefix}}"'
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Byte-compiled / optimized
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Distribution / packaging
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
*.egg
|
|
11
|
+
|
|
12
|
+
# Virtual environments
|
|
13
|
+
.venv/
|
|
14
|
+
venv/
|
|
15
|
+
|
|
16
|
+
# Testing
|
|
17
|
+
.pytest_cache/
|
|
18
|
+
.coverage
|
|
19
|
+
htmlcov/
|
|
20
|
+
|
|
21
|
+
# Type checking / linting
|
|
22
|
+
.mypy_cache/
|
|
23
|
+
.ruff_cache/
|
|
24
|
+
|
|
25
|
+
# IDEs
|
|
26
|
+
.idea/
|
|
27
|
+
.vscode/
|
|
28
|
+
*.swp
|
|
29
|
+
*.swo
|
|
30
|
+
|
|
31
|
+
# Environment
|
|
32
|
+
.env
|
|
33
|
+
.env.*
|
|
34
|
+
!.env.example
|
|
35
|
+
|
|
36
|
+
# OS
|
|
37
|
+
.DS_Store
|
|
38
|
+
Thumbs.db
|
|
39
|
+
|
|
40
|
+
# Node (docs site)
|
|
41
|
+
node_modules/
|
|
42
|
+
|
|
43
|
+
# Test artifacts
|
|
44
|
+
MagicMock/
|
|
45
|
+
batch/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
3
|
+
rev: v0.9.10
|
|
4
|
+
hooks:
|
|
5
|
+
- id: ruff
|
|
6
|
+
args: [--fix, --unsafe-fixes]
|
|
7
|
+
- id: ruff-format
|
|
8
|
+
|
|
9
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
10
|
+
rev: v5.0.0
|
|
11
|
+
hooks:
|
|
12
|
+
- id: no-commit-to-branch
|
|
13
|
+
args: [--branch, main]
|
|
14
|
+
|
|
15
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
16
|
+
rev: v1.13.0
|
|
17
|
+
hooks:
|
|
18
|
+
- id: mypy
|
|
19
|
+
additional_dependencies: [pydantic, types-PyYAML]
|
|
20
|
+
args: [--ignore-missing-imports]
|
|
21
|
+
exclude: ^(examples|tests)/
|
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
# AI Coding Agent Guidelines
|
|
2
|
+
|
|
3
|
+
These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Project Structure
|
|
8
|
+
|
|
9
|
+
This project uses the **Agent Manifest Protocol (AMP)** for navigation.
|
|
10
|
+
**[> Open Codebase Map (agent_actions/_MANIFEST.md)](agent_actions/_MANIFEST.md)**
|
|
11
|
+
|
|
12
|
+
### Navigation Strategy
|
|
13
|
+
1. **Start Here:** Use this file for high-level context.
|
|
14
|
+
2. **Explore:** Follow the `_MANIFEST.md` link above to traverse the codebase structure.
|
|
15
|
+
3. **Inspect:** Read individual `_MANIFEST.md` files in subdirectories to find specific symbols and dependencies.
|
|
16
|
+
4. **Read Code:** Only read source files when you have pinpointed the exact location.
|
|
17
|
+
|
|
18
|
+
### Development
|
|
19
|
+
- **Install:** `uv sync`
|
|
20
|
+
- **Activate:** `source .venv/bin/activate`
|
|
21
|
+
- **Test:** `pytest`
|
|
22
|
+
- **Lint:** `ruff check .`
|
|
23
|
+
- **Format:** `ruff format .`
|
|
24
|
+
|
|
25
|
+
### Manifest Maintenance
|
|
26
|
+
Always update `_MANIFEST.md` files when making code changes that add, remove, or modify modules, classes, or functions.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## Operating Principles (Non-Negotiable)
|
|
31
|
+
|
|
32
|
+
- **Correctness over cleverness**: Prefer boring, readable solutions that are easy to maintain.
|
|
33
|
+
- **Smallest change that works**: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.
|
|
34
|
+
- **Leverage existing patterns**: Follow established project conventions before introducing new abstractions or dependencies.
|
|
35
|
+
- **Prove it works**: "Seems right" is not done. Validate with tests/build/lint and/or a reliable manual repro.
|
|
36
|
+
- **Be explicit about uncertainty**: If you cannot verify something, say so and propose the safest next step to verify.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Workflow Orchestration
|
|
41
|
+
|
|
42
|
+
### 1. Plan Mode Default
|
|
43
|
+
- Enter plan mode for any non-trivial task (3+ steps, multi-file change, architectural decision, production-impacting behavior).
|
|
44
|
+
- Include verification steps in the plan (not as an afterthought).
|
|
45
|
+
- If new information invalidates the plan: **stop**, update the plan, then continue.
|
|
46
|
+
- Write a crisp spec first when requirements are ambiguous (inputs/outputs, edge cases, success criteria).
|
|
47
|
+
|
|
48
|
+
### 2. Subagent Strategy (Parallelize Intelligently)
|
|
49
|
+
- Use subagents to keep the main context clean and to parallelize:
|
|
50
|
+
- repo exploration, pattern discovery, test failure triage, dependency research, risk review.
|
|
51
|
+
- Give each subagent **one focused objective** and a concrete deliverable:
|
|
52
|
+
- "Find where X is implemented and list files + key functions" beats "look around."
|
|
53
|
+
- Merge subagent outputs into a short, actionable synthesis before coding.
|
|
54
|
+
|
|
55
|
+
### 3. Incremental Delivery (Reduce Risk)
|
|
56
|
+
- Prefer **thin vertical slices** over big-bang changes.
|
|
57
|
+
- Land work in small, verifiable increments:
|
|
58
|
+
- implement → test → verify → then expand.
|
|
59
|
+
- When feasible, keep changes behind:
|
|
60
|
+
- feature flags, config switches, or safe defaults.
|
|
61
|
+
|
|
62
|
+
### 4. Self-Improvement Loop
|
|
63
|
+
- After any user correction or a discovered mistake:
|
|
64
|
+
- add a new entry to `tasks/lessons.md` capturing:
|
|
65
|
+
- the failure mode, the detection signal, and a prevention rule.
|
|
66
|
+
- Review `tasks/lessons.md` at session start and before major refactors.
|
|
67
|
+
|
|
68
|
+
### 5. Verification Before "Done"
|
|
69
|
+
- Never mark complete without evidence:
|
|
70
|
+
- tests, lint/typecheck, build, logs, or a deterministic manual repro.
|
|
71
|
+
- Compare behavior baseline vs changed behavior when relevant.
|
|
72
|
+
- Ask: "Would a staff engineer approve this diff and the verification story?"
|
|
73
|
+
|
|
74
|
+
### 6. Demand Elegance (Balanced)
|
|
75
|
+
- For non-trivial changes, pause and ask:
|
|
76
|
+
- "Is there a simpler structure with fewer moving parts?"
|
|
77
|
+
- If the fix is hacky, rewrite it the elegant way **if** it does not expand scope materially.
|
|
78
|
+
- Do not over-engineer simple fixes; keep momentum and clarity.
|
|
79
|
+
|
|
80
|
+
### 7. Autonomous Bug Fixing (With Guardrails)
|
|
81
|
+
- When given a bug report:
|
|
82
|
+
- reproduce → isolate root cause → fix → add regression coverage → verify.
|
|
83
|
+
- Do not offload debugging work to the user unless truly blocked.
|
|
84
|
+
- If blocked, ask for **one** missing detail with a recommended default and explain what changes based on the answer.
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## Task Management (File-Based, Auditable)
|
|
89
|
+
|
|
90
|
+
1. **Plan First**
|
|
91
|
+
- Write a checklist to `tasks/todo.md` for any non-trivial work.
|
|
92
|
+
- Include "Verify" tasks explicitly (lint/tests/build/manual checks).
|
|
93
|
+
2. **Define Success**
|
|
94
|
+
- Add acceptance criteria (what must be true when done).
|
|
95
|
+
3. **Track Progress**
|
|
96
|
+
- Mark items complete as you go; keep one "in progress" item at a time.
|
|
97
|
+
4. **Checkpoint Notes**
|
|
98
|
+
- Capture discoveries, decisions, and constraints as you learn them.
|
|
99
|
+
5. **Document Results**
|
|
100
|
+
- Add a short "Results" section: what changed, where, how verified.
|
|
101
|
+
6. **Capture Lessons**
|
|
102
|
+
- Update `tasks/lessons.md` after corrections or postmortems.
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Communication Guidelines (User-Facing)
|
|
107
|
+
|
|
108
|
+
### 1. Be Concise, High-Signal
|
|
109
|
+
- Lead with outcome and impact, not process.
|
|
110
|
+
- Reference concrete artifacts:
|
|
111
|
+
- file paths, command names, error messages, and what changed.
|
|
112
|
+
- Avoid dumping large logs; summarize and point to where evidence lives.
|
|
113
|
+
|
|
114
|
+
### 2. Ask Questions Only When Blocked
|
|
115
|
+
When you must ask:
|
|
116
|
+
- Ask **exactly one** targeted question.
|
|
117
|
+
- Provide a recommended default.
|
|
118
|
+
- State what would change depending on the answer.
|
|
119
|
+
|
|
120
|
+
### 3. State Assumptions and Constraints
|
|
121
|
+
- If you inferred requirements, list them briefly.
|
|
122
|
+
- If you could not run verification, say why and how to verify.
|
|
123
|
+
|
|
124
|
+
### 4. Show the Verification Story
|
|
125
|
+
- Always include:
|
|
126
|
+
- what you ran (tests/lint/build), and the outcome.
|
|
127
|
+
- If you didn't run something, give a minimal command list the user can run.
|
|
128
|
+
|
|
129
|
+
### 5. Avoid "Busywork Updates"
|
|
130
|
+
- Don't narrate every step.
|
|
131
|
+
- Do provide checkpoints when:
|
|
132
|
+
- scope changes, risks appear, verification fails, or you need a decision.
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Context Management Strategies (Don't Drown the Session)
|
|
137
|
+
|
|
138
|
+
### 1. Read Before Write
|
|
139
|
+
- Before editing:
|
|
140
|
+
- locate the authoritative source of truth (existing module/pattern/tests).
|
|
141
|
+
- Prefer small, local reads (targeted files) over scanning the whole repo.
|
|
142
|
+
|
|
143
|
+
### 2. Keep a Working Memory
|
|
144
|
+
- Maintain a short running "Working Notes" section in `tasks/todo.md`:
|
|
145
|
+
- key constraints, invariants, decisions, and discovered pitfalls.
|
|
146
|
+
- When context gets large:
|
|
147
|
+
- compress into a brief summary and discard raw noise.
|
|
148
|
+
|
|
149
|
+
### 3. Minimize Cognitive Load in Code
|
|
150
|
+
- Prefer explicit names and direct control flow.
|
|
151
|
+
- Avoid clever meta-programming unless the project already uses it.
|
|
152
|
+
- Leave code easier to read than you found it.
|
|
153
|
+
|
|
154
|
+
### 4. Control Scope Creep
|
|
155
|
+
- If a change reveals deeper issues:
|
|
156
|
+
- fix only what is necessary for correctness/safety.
|
|
157
|
+
- log follow-ups as TODOs/issues rather than expanding the current task.
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## Error Handling and Recovery Patterns
|
|
162
|
+
|
|
163
|
+
### 1. "Stop-the-Line" Rule
|
|
164
|
+
If anything unexpected happens (test failures, build errors, behavior regressions):
|
|
165
|
+
- stop adding features
|
|
166
|
+
- preserve evidence (error output, repro steps)
|
|
167
|
+
- return to diagnosis and re-plan
|
|
168
|
+
|
|
169
|
+
### 2. Triage Checklist (Use in Order)
|
|
170
|
+
1. **Reproduce** reliably (test, script, or minimal steps).
|
|
171
|
+
2. **Localize** the failure (which layer: UI, API, DB, network, build tooling).
|
|
172
|
+
3. **Reduce** to a minimal failing case (smaller input, fewer steps).
|
|
173
|
+
4. **Fix** root cause (not symptoms).
|
|
174
|
+
5. **Guard** with regression coverage (test or invariant checks).
|
|
175
|
+
6. **Verify** end-to-end for the original report.
|
|
176
|
+
|
|
177
|
+
### 3. Safe Fallbacks (When Under Time Pressure)
|
|
178
|
+
- Prefer "safe default + warning" over partial behavior.
|
|
179
|
+
- Degrade gracefully:
|
|
180
|
+
- return an error that is actionable, not silent failure.
|
|
181
|
+
- Avoid broad refactors as "fixes."
|
|
182
|
+
|
|
183
|
+
### 4. Rollback Strategy (When Risk Is High)
|
|
184
|
+
- Keep changes reversible:
|
|
185
|
+
- feature flag, config gating, or isolated commits.
|
|
186
|
+
- If unsure about production impact:
|
|
187
|
+
- ship behind a disabled-by-default flag.
|
|
188
|
+
|
|
189
|
+
### 5. Instrumentation as a Tool (Not a Crutch)
|
|
190
|
+
- Add logging/metrics only when they:
|
|
191
|
+
- materially reduce debugging time, or prevent recurrence.
|
|
192
|
+
- Remove temporary debug output once resolved (unless it's genuinely useful long-term).
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
## Engineering Best Practices (AI Agent Edition)
|
|
197
|
+
|
|
198
|
+
### 1. API / Interface Discipline
|
|
199
|
+
- Design boundaries around stable interfaces:
|
|
200
|
+
- functions, modules, components, route handlers.
|
|
201
|
+
- Prefer adding optional parameters over duplicating code paths.
|
|
202
|
+
- Keep error semantics consistent (throw vs return error vs empty result).
|
|
203
|
+
|
|
204
|
+
### 2. Testing Strategy
|
|
205
|
+
- Add the smallest test that would have caught the bug.
|
|
206
|
+
- Prefer:
|
|
207
|
+
- unit tests for pure logic,
|
|
208
|
+
- integration tests for DB/network boundaries,
|
|
209
|
+
- E2E only for critical user flows.
|
|
210
|
+
- Avoid brittle tests tied to incidental implementation details.
|
|
211
|
+
|
|
212
|
+
### 3. Type Safety and Invariants
|
|
213
|
+
- Avoid suppressions (`any`, ignores) unless the project explicitly permits and you have no alternative.
|
|
214
|
+
- Encode invariants where they belong:
|
|
215
|
+
- validation at boundaries, not scattered checks.
|
|
216
|
+
|
|
217
|
+
### 4. Dependency Discipline
|
|
218
|
+
- Do not add new dependencies unless:
|
|
219
|
+
- the existing stack cannot solve it cleanly, and the benefit is clear.
|
|
220
|
+
- Prefer standard library / existing utilities.
|
|
221
|
+
|
|
222
|
+
### 5. Security and Privacy
|
|
223
|
+
- Never introduce secret material into code, logs, or chat output.
|
|
224
|
+
- Treat user input as untrusted:
|
|
225
|
+
- validate, sanitize, and constrain.
|
|
226
|
+
- Prefer least privilege (especially for DB access and server-side actions).
|
|
227
|
+
|
|
228
|
+
### 6. Performance (Pragmatic)
|
|
229
|
+
- Avoid premature optimization.
|
|
230
|
+
- Do fix:
|
|
231
|
+
- obvious N+1 patterns, accidental unbounded loops, repeated heavy computation.
|
|
232
|
+
- Measure when in doubt; don't guess.
|
|
233
|
+
|
|
234
|
+
### 7. Accessibility and UX (When UI Changes)
|
|
235
|
+
- Keyboard navigation, focus management, readable contrast, and meaningful empty/error states.
|
|
236
|
+
- Prefer clear copy and predictable interactions over fancy effects.
|
|
237
|
+
|
|
238
|
+
### 8. Logging Convention
|
|
239
|
+
|
|
240
|
+
| Layer | Tool | Level |
|
|
241
|
+
|-------|------|-------|
|
|
242
|
+
| CLI user output | `click.echo()` / `console.print()` | N/A |
|
|
243
|
+
| Operational flow events | `logger.info` | Start, complete, skip |
|
|
244
|
+
| Recoverable failures | `logger.warning` | Retries, fallbacks, degradation |
|
|
245
|
+
| Unrecoverable errors | `logger.error` | Failures that affect output |
|
|
246
|
+
| Debug diagnostics | `logger.debug` | Exception traces, internal state |
|
|
247
|
+
|
|
248
|
+
Rules:
|
|
249
|
+
- Business logic: `logger = logging.getLogger(__name__)` — never `print()`
|
|
250
|
+
- CLI: `click.echo()` for user output, `logger.*` for operational logging
|
|
251
|
+
- Silent `except: pass` must log at `debug` or `warning` (except destructors and safety utilities)
|
|
252
|
+
- `print()` permitted only in: standalone scripts (`__main__`), docstring examples, dedicated debug handlers
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
## Git and Change Hygiene (If Applicable)
|
|
257
|
+
|
|
258
|
+
- Keep commits atomic and describable; avoid "misc fixes" bundles.
|
|
259
|
+
- Don't rewrite history unless explicitly requested.
|
|
260
|
+
- Don't mix formatting-only changes with behavioral changes unless the repo standard requires it.
|
|
261
|
+
- Treat generated files carefully:
|
|
262
|
+
- only commit them if the project expects it.
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
## Definition of Done (DoD)
|
|
267
|
+
|
|
268
|
+
A task is done when:
|
|
269
|
+
- Behavior matches acceptance criteria.
|
|
270
|
+
- Tests/lint/typecheck/build (as relevant) pass or you have a documented reason they were not run.
|
|
271
|
+
- Risky changes have a rollback/flag strategy (when applicable).
|
|
272
|
+
- The code follows existing conventions and is readable.
|
|
273
|
+
- A short verification story exists: "what changed + how we know it works."
|
|
274
|
+
|
|
275
|
+
---
|
|
276
|
+
|
|
277
|
+
## Templates
|
|
278
|
+
|
|
279
|
+
### Plan Template (Paste into `tasks/todo.md`)
|
|
280
|
+
- [ ] Restate goal + acceptance criteria
|
|
281
|
+
- [ ] Locate existing implementation / patterns
|
|
282
|
+
- [ ] Design: minimal approach + key decisions
|
|
283
|
+
- [ ] Implement smallest safe slice
|
|
284
|
+
- [ ] Add/adjust tests
|
|
285
|
+
- [ ] Run verification (lint/tests/build/manual repro)
|
|
286
|
+
- [ ] Summarize changes + verification story
|
|
287
|
+
- [ ] Record lessons (if any)
|
|
288
|
+
|
|
289
|
+
### Bugfix Template (Use for Reports)
|
|
290
|
+
- Repro steps:
|
|
291
|
+
- Expected vs actual:
|
|
292
|
+
- Root cause:
|
|
293
|
+
- Fix:
|
|
294
|
+
- Regression coverage:
|
|
295
|
+
- Verification performed:
|
|
296
|
+
- Risk/rollback notes:
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
7
|
+
and is generated by [Changie](https://github.com/miniscruff/changie).
|
|
8
|
+
|
|
9
|
+
## v0.1.0 - 2026-03-27
|
|
10
|
+
|
|
11
|
+
Initial release.
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- Declarative YAML workflow definition with per-action model, context, and schema configuration
|
|
16
|
+
- Multi-provider LLM support: OpenAI, Anthropic, Google Gemini, Groq, Mistral, Cohere, Ollama
|
|
17
|
+
- DAG-based dependency resolution with automatic parallel execution
|
|
18
|
+
- Batch processing via provider batch APIs for high-throughput workloads
|
|
19
|
+
- Pre-check guards to skip actions before making LLM calls
|
|
20
|
+
- JSON schema validation with automatic reprompt on malformed output
|
|
21
|
+
- Context scoping (`observe` / `drop`) to control token usage per action
|
|
22
|
+
- User-defined functions (UDFs) for custom pre/post-processing logic
|
|
23
|
+
- Parallel consensus pattern (multiple voters + merge)
|
|
24
|
+
- CLI (`agac`) with `run`, `batch`, `init`, `inspect`, `docs`, and `schema` commands
|
|
25
|
+
- LSP server (`agac-lsp`) for editor integration with diagnostics and completions
|
|
26
|
+
- Interactive documentation site via `agac docs serve`
|
|
27
|
+
- Per-action observability: timing, token counts, and structured event logs
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
|
|
2
|
+
# Contributor Covenant 3.0 Code of Conduct
|
|
3
|
+
|
|
4
|
+
## Our Pledge
|
|
5
|
+
|
|
6
|
+
We pledge to make our community welcoming, safe, and equitable for all.
|
|
7
|
+
|
|
8
|
+
We are committed to fostering an environment that respects and promotes the dignity, rights, and contributions of all individuals, regardless of characteristics including race, ethnicity, caste, color, age, physical characteristics, neurodiversity, disability, sex or gender, gender identity or expression, sexual orientation, language, philosophy or religion, national or social origin, socio-economic position, level of education, or other status. The same privileges of participation are extended to everyone who participates in good faith and in accordance with this Covenant.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Encouraged Behaviors
|
|
12
|
+
|
|
13
|
+
While acknowledging differences in social norms, we all strive to meet our community's expectations for positive behavior. We also understand that our words and actions may be interpreted differently than we intend based on culture, background, or native language.
|
|
14
|
+
|
|
15
|
+
With these considerations in mind, we agree to behave mindfully toward each other and act in ways that center our shared values, including:
|
|
16
|
+
|
|
17
|
+
1. Respecting the **purpose of our community**, our activities, and our ways of gathering.
|
|
18
|
+
2. Engaging **kindly and honestly** with others.
|
|
19
|
+
3. Respecting **different viewpoints** and experiences.
|
|
20
|
+
4. **Taking responsibility** for our actions and contributions.
|
|
21
|
+
5. Gracefully giving and accepting **constructive feedback**.
|
|
22
|
+
6. Committing to **repairing harm** when it occurs.
|
|
23
|
+
7. Behaving in other ways that promote and sustain the **well-being of our community**.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Restricted Behaviors
|
|
27
|
+
|
|
28
|
+
We agree to restrict the following behaviors in our community. Instances, threats, and promotion of these behaviors are violations of this Code of Conduct.
|
|
29
|
+
|
|
30
|
+
1. **Harassment.** Violating explicitly expressed boundaries or engaging in unnecessary personal attention after any clear request to stop.
|
|
31
|
+
2. **Character attacks.** Making insulting, demeaning, or pejorative comments directed at a community member or group of people.
|
|
32
|
+
3. **Stereotyping or discrimination.** Characterizing anyone’s personality or behavior on the basis of immutable identities or traits.
|
|
33
|
+
4. **Sexualization.** Behaving in a way that would generally be considered inappropriately intimate in the context or purpose of the community.
|
|
34
|
+
5. **Violating confidentiality**. Sharing or acting on someone's personal or private information without their permission.
|
|
35
|
+
6. **Endangerment.** Causing, encouraging, or threatening violence or other harm toward any person or group.
|
|
36
|
+
7. Behaving in other ways that **threaten the well-being** of our community.
|
|
37
|
+
|
|
38
|
+
### Other Restrictions
|
|
39
|
+
|
|
40
|
+
1. **Misleading identity.** Impersonating someone else for any reason, or pretending to be someone else to evade enforcement actions.
|
|
41
|
+
2. **Failing to credit sources.** Not properly crediting the sources of content you contribute.
|
|
42
|
+
3. **Promotional materials**. Sharing marketing or other commercial content in a way that is outside the norms of the community.
|
|
43
|
+
4. **Irresponsible communication.** Failing to responsibly present content which includes, links or describes any other restricted behaviors.
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Reporting an Issue
|
|
47
|
+
|
|
48
|
+
Tensions can occur between community members even when they are trying their best to collaborate. Not every conflict represents a code of conduct violation, and this Code of Conduct reinforces encouraged behaviors and norms that can help avoid conflicts and minimize harm.
|
|
49
|
+
|
|
50
|
+
When an incident does occur, it is important to report it promptly. To report a possible violation, please email **conduct@agent-actions.dev** with a description of the incident.
|
|
51
|
+
|
|
52
|
+
Community Moderators take reports of violations seriously and will make every effort to respond in a timely manner. They will investigate all reports of code of conduct violations, reviewing messages, logs, and recordings, or interviewing witnesses and other participants. Community Moderators will keep investigation and enforcement actions as transparent as possible while prioritizing safety and confidentiality. In order to honor these values, enforcement actions are carried out in private with the involved parties, but communicating to the whole community may be part of a mutually agreed upon resolution.
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## Addressing and Repairing Harm
|
|
56
|
+
|
|
57
|
+
**[NOTE: The remedies and repairs outlined below are suggestions based on best practices in code of conduct enforcement. If your community has its own established enforcement process, be sure to edit this section to describe your own policies.]**
|
|
58
|
+
|
|
59
|
+
If an investigation by the Community Moderators finds that this Code of Conduct has been violated, the following enforcement ladder may be used to determine how best to repair harm, based on the incident's impact on the individuals involved and the community as a whole. Depending on the severity of a violation, lower rungs on the ladder may be skipped.
|
|
60
|
+
|
|
61
|
+
1) Warning
|
|
62
|
+
1) Event: A violation involving a single incident or series of incidents.
|
|
63
|
+
2) Consequence: A private, written warning from the Community Moderators.
|
|
64
|
+
3) Repair: Examples of repair include a private written apology, acknowledgement of responsibility, and seeking clarification on expectations.
|
|
65
|
+
2) Temporarily Limited Activities
|
|
66
|
+
1) Event: A repeated incidence of a violation that previously resulted in a warning, or the first incidence of a more serious violation.
|
|
67
|
+
2) Consequence: A private, written warning with a time-limited cooldown period designed to underscore the seriousness of the situation and give the community members involved time to process the incident. The cooldown period may be limited to particular communication channels or interactions with particular community members.
|
|
68
|
+
3) Repair: Examples of repair may include making an apology, using the cooldown period to reflect on actions and impact, and being thoughtful about re-entering community spaces after the period is over.
|
|
69
|
+
3) Temporary Suspension
|
|
70
|
+
1) Event: A pattern of repeated violation which the Community Moderators have tried to address with warnings, or a single serious violation.
|
|
71
|
+
2) Consequence: A private written warning with conditions for return from suspension. In general, temporary suspensions give the person being suspended time to reflect upon their behavior and possible corrective actions.
|
|
72
|
+
3) Repair: Examples of repair include respecting the spirit of the suspension, meeting the specified conditions for return, and being thoughtful about how to reintegrate with the community when the suspension is lifted.
|
|
73
|
+
4) Permanent Ban
|
|
74
|
+
1) Event: A pattern of repeated code of conduct violations that other steps on the ladder have failed to resolve, or a violation so serious that the Community Moderators determine there is no way to keep the community safe with this person as a member.
|
|
75
|
+
2) Consequence: Access to all community spaces, tools, and communication channels is removed. In general, permanent bans should be rarely used, should have strong reasoning behind them, and should only be resorted to if working through other remedies has failed to change the behavior.
|
|
76
|
+
3) Repair: There is no possible repair in cases of this severity.
|
|
77
|
+
|
|
78
|
+
This enforcement ladder is intended as a guideline. It does not limit the ability of Community Managers to use their discretion and judgment, in keeping with the best interests of our community.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
## Scope
|
|
82
|
+
|
|
83
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public or other spaces. Examples of representing our community include using an official email address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
## Attribution
|
|
87
|
+
|
|
88
|
+
This Code of Conduct is adapted from the Contributor Covenant, version 3.0, permanently available at [https://www.contributor-covenant.org/version/3/0/](https://www.contributor-covenant.org/version/3/0/).
|
|
89
|
+
|
|
90
|
+
Contributor Covenant is stewarded by the Organization for Ethical Source and licensed under CC BY-SA 4.0. To view a copy of this license, visit [https://creativecommons.org/licenses/by-sa/4.0/](https://creativecommons.org/licenses/by-sa/4.0/)
|
|
91
|
+
|
|
92
|
+
For answers to common questions about Contributor Covenant, see the FAQ at [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are provided at [https://www.contributor-covenant.org/translations](https://www.contributor-covenant.org/translations). Additional enforcement and community guideline resources can be found at [https://www.contributor-covenant.org/resources](https://www.contributor-covenant.org/resources). The enforcement ladder was inspired by the work of [Mozilla’s code of conduct team](https://github.com/mozilla/inclusion).
|