This repository tracks the workspace-level operational files for the tryAGI organization.
It does not manage the individual SDK repositories inside this folder. Each SDK remains an independent git repository in its own subdirectory, and the root workspace repo ignores those nested repos on purpose.
- Cross-repo operating docs such as AGENTS.md
- Workspace scripts such as audit-generated-sdks.sh
- Audit policy defaults in config/generated-sdk-audit.json
- Shared guides such as NEW_SDK_GUIDE.md and GENERATED_SDK_AUDITS.md
# Fast status for generated SDK settings + workflows
./scripts/audit-generated-sdks.sh summary
# Open issues across generated SDK repos
./scripts/audit-generated-sdks.sh issues
# Heuristic warning / skipped-test scan on the latest completed publish runs
./scripts/audit-generated-sdks.sh signals
# Full daily briefing as text
./scripts/audit-generated-sdks.sh briefing
# Optional: ignore skipped/inconclusive noise from specific repos in summaries
TRYAGI_SIGNAL_SKIP_IGNORE_REGEX='^(OpenAI)$' ./scripts/audit-generated-sdks.sh briefingOutputs are written to /tmp/tryagi-sdk-audit/.
Default audit policy lives in config/generated-sdk-audit.json. Prefer updating that file for tracked workspace defaults, and use env vars or --config for one-off overrides.
# List the generated SDK repos detected in this workspace
./scripts/manage-generated-sdk-subscriptions.sh repos
# Preview muting notifications for every generated SDK repo
./scripts/manage-generated-sdk-subscriptions.sh ignore
# Apply the mute operation after previewing it
./scripts/manage-generated-sdk-subscriptions.sh ignore --applyThe subscription helper uses gh api, so it requires a valid gh auth login session.
- The root repo should stay limited to workspace files only.
- Do not add nested SDK repositories from this folder into the root repo.