Add copyright and SPDX license headers to scripts

This commit is contained in:
Matt Piccolella 2026-05-11 14:02:12 -07:00
parent cf268c9a53
commit 22649cf9aa
No known key found for this signature in database
5 changed files with 10 additions and 0 deletions

View file

@ -1,4 +1,6 @@
#!/usr/bin/env bash
# Copyright 2026 Anthropic PBC.
# SPDX-License-Identifier: Apache-2.0
# Deploy a managed-agent template to POST /v1/agents.
#
# Resolves manifest conveniences before posting:

View file

@ -1,4 +1,6 @@
#!/usr/bin/env python3
# Copyright 2026 Anthropic PBC.
# SPDX-License-Identifier: Apache-2.0
"""Assert orchestrator `agent.yaml` files ship with scoped tool configs.
Runs over every `managed-agent-cookbooks/*/agent.yaml` and checks the

View file

@ -1,4 +1,6 @@
#!/usr/bin/env python3
# Copyright 2026 Anthropic PBC.
# SPDX-License-Identifier: Apache-2.0
"""Reference event loop for cross-agent handoffs between managed agents.
REFERENCE ONLY replace with your firm's workflow engine (Temporal, Airflow,

View file

@ -1,4 +1,6 @@
#!/usr/bin/env bash
# Copyright 2026 Anthropic PBC.
# SPDX-License-Identifier: Apache-2.0
# Dry-run every managed-agent cookbook and assert the resolved POST /v1/agents
# bodies are well-formed: valid JSON, depth-1, non-empty system prompts, no
# output_schema. Exits non-zero if any cookbook fails.

View file

@ -1,4 +1,6 @@
#!/usr/bin/env python3
# Copyright 2026 Anthropic PBC.
# SPDX-License-Identifier: Apache-2.0
"""Harness-side schema validation for managed-agent worker output.
Usage: validate.py <output.json> <schema.json|schema.yaml>