Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@ export default defineConfig({
'/reference/custom-agents/': '/gh-aw/reference/copilot-custom-agents/',
'/reference/custom-agent/': '/gh-aw/reference/custom-agent-for-aw/',

// Organization Practices moved under Guides
'/organization-practices/': '/gh-aw/guides/organization-practices/',
'/organization-practices/safe-rollout/': '/gh-aw/guides/organization-practices/safe-rollout/',
'/organization-practices/sharing-workflows/': '/gh-aw/guides/organization-practices/sharing-workflows/',

// Guides → Patterns renames
'/guides/chatops/': '/gh-aw/patterns/chat-ops/',
'/guides/issueops/': '/gh-aw/patterns/issue-ops/',
Expand Down Expand Up @@ -269,6 +274,14 @@ export default defineConfig({
{ label: 'GitHub Actions Primer', link: '/guides/github-actions-primer/' },
{ label: 'Maintaining Repositories', link: '/guides/maintaining-repos/' },
{ label: 'Network Configuration', link: '/guides/network-configuration/' },
{
label: 'Organization Practices',
items: [
{ label: 'Overview', link: '/guides/organization-practices/' },
{ label: 'Safe Rollout', link: '/guides/organization-practices/safe-rollout/' },
{ label: 'Sharing Workflows', link: '/guides/organization-practices/sharing-workflows/' },
],
},
{ label: 'Reusing Workflows', link: '/guides/packaging-imports/' },
{ label: 'Serena', link: '/guides/serena/' },
{ label: 'Using Custom MCPs', link: '/guides/mcps/' },
Expand All @@ -279,14 +292,6 @@ export default defineConfig({
{ label: 'Audit Reports', link: '/guides/audit-with-agents/' },
],
},
{
label: 'Organization Practices',
items: [
{ label: 'Overview', link: '/organization-practices/' },
{ label: 'Safe Rollout', link: '/organization-practices/safe-rollout/' },
{ label: 'Sharing Workflows', link: '/organization-practices/sharing-workflows/' },
],
},
{
label: 'Design Patterns',
items: [
Expand Down
19 changes: 19 additions & 0 deletions docs/src/content/docs/guides/organization-practices/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Organization Practices
description: Guidance for adopting, sharing, and governing GitHub Agentic Workflows across teams and repositories.
---

Organization Practices collects guidance that matters at team and enterprise scale such as:

- Safe rollout strategies before production writes are enabled
- Workflow sharing across repositories and organizations
- Centralized ownership models for workflow infrastructure
- Platform conventions for versioning, review, and promotion

## Safe Rollout

[Safe Rollout](/gh-aw/guides/organization-practices/safe-rollout/) describes how to move from report-only or staged behavior to production writes with evidence and control. One technique inside that progression is shadow evaluation, where the workflow writes to a safe non-production target before promotion.

## Sharing Workflows

[Sharing Workflows](/gh-aw/guides/organization-practices/sharing-workflows/) describes how workflows can be reused across repositories and organizations. It covers imports, reusable components, and central workflow repositories.
19 changes: 0 additions & 19 deletions docs/src/content/docs/organization-practices/index.mdx

This file was deleted.

Loading