René's URL Explorer Experiment


Title: Document the `managed:` repository field and `--no-managed` workspace sync flag · Issue #362 · EntityProcess/allagents · GitHub

Open Graph Title: Document the `managed:` repository field and `--no-managed` workspace sync flag · Issue #362 · EntityProcess/allagents

X Title: Document the `managed:` repository field and `--no-managed` workspace sync flag · Issue #362 · EntityProcess/allagents

Description: Summary The managed: field on repositories[] in workspace.yaml, and the matching --no-managed flag on allagents workspace sync, are real features in the code (v1.7.2) but are not documented in any user-facing surface I could find. This i...

Open Graph Description: Summary The managed: field on repositories[] in workspace.yaml, and the matching --no-managed flag on allagents workspace sync, are real features in the code (v1.7.2) but are not documented in any ...

X Description: Summary The managed: field on repositories[] in workspace.yaml, and the matching --no-managed flag on allagents workspace sync, are real features in the code (v1.7.2) but are not documented in any ...

Opengraph URL: https://github.com/EntityProcess/allagents/issues/362

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Document the `managed:` repository field and `--no-managed` workspace sync flag","articleBody":"## Summary\n\nThe `managed:` field on `repositories[]` in `workspace.yaml`, and the matching `--no-managed` flag on `allagents workspace sync`, are real features in the code (v1.7.2) but are not documented in any user-facing surface I could find. This issue asks for them to be added to the docs.\n\n## What the feature does\n\nFrom `dist/index.js` (v1.7.2):\n\n```javascript\n// shouldClone / shouldPull gatekeepers\nfunction shouldClone(managed) {\n  if (managed === undefined || managed === false) return false;\n  return true;\n}\nfunction shouldPull(managed) {\n  if (managed === true || managed === \"sync\") return true;\n  return false;\n}\n\n// processManagedRepos — called during `allagents workspace sync`\nasync function processManagedRepos(repositories, workspacePath, options2 = {}) {\n  if (options2.skipManaged || options2.offline || options2.dryRun) return [];\n  const managed = repositories.filter((r) =\u003e r.managed);\n  if (managed.length === 0) return [];\n  for (const repo of managed) {\n    // ...\n    if (!existsSync(absolutePath)) {\n      if (!shouldClone(repo.managed)) { /* skip */ continue; }\n      await cloneRepo(url, absolutePath, repo.branch);\n    } else if (shouldPull(repo.managed)) {\n      await pullRepo(absolutePath, repo.branch);\n    }\n  }\n}\n```\n\nSo in practice:\n\n- A `repositories[]` entry with `managed: true` causes `allagents workspace sync` to **`git clone`** the repo from `source` / `repo` into `path` if the path doesn't exist, and **`git pull`** it if it does exist and is clean.\n- `managed: \"sync\"` behaves like `true` for both clone and pull.\n- A truthy-but-not-`true` value (anything that passes the generic filter) causes a clone on first run but no subsequent pull.\n- Omitting `managed:` (or setting it to `false`) causes `allagents workspace sync` to leave the repo entirely alone.\n- Passing `--no-managed` to `workspace sync` sets `skipManaged: true` and short-circuits the whole function, regardless of what any repo has in its `managed:` field.\n\n## Where it's currently surfaced\n\n| Surface | Status |\n|---|---|\n| `allagents workspace sync --help` | ✅ Flag shown: `--no-managed  - Skip managed repository clone/pull operations [optional]` |\n| `dist/index.js` source | ✅ First-class flag, `flag({ long: \"no-managed\", ... })` |\n| https://allagents.dev (public docs site) | ❌ Not found on any page I could reach |\n| `docs/src/content/docs/docs/reference/cli.mdx` in the repo | ❌ No mention of `--no-managed` |\n| `docs/src/content/docs/docs/reference/configuration.mdx` | ❌ No mention of `managed:` on `repositories[]` |\n| `docs/src/content/docs/docs/guides/workspaces.mdx` | ❌ The example `repositories:` block omits `managed:` entirely |\n\n## Why this matters\n\nThe behavior is security- and correctness-relevant for anyone using allagents in a pipeline where another tool is already materializing repositories:\n\n- In a CI job that pre-downloads a pinned snapshot into a workspace directory, then calls `allagents workspace sync` to install skills/plugins/MCP servers, any stray `managed: true` entry silently causes allagents to overwrite the pre-materialized repo with `git clone` or mutate it with `git pull`. That's a real footgun — a copy-pasted YAML from another project could silently drift a pipeline's pinned source code to upstream HEAD.\n- Downstream users reading the docs have no way to discover either the feature (when they want it) or the escape hatch (when they explicitly don't). Today the only way to learn about it is reading the CLI `--help` output or the source.\n- Undocumented CLI flags are a semver hazard. If a future release renames `--no-managed` or folds it into a different flag, any downstream pipeline relying on the current name breaks with an \"unknown flag\" error. Documenting it means it becomes part of the published contract.\n\n## Suggested doc additions\n\n### 1. `docs/src/content/docs/docs/reference/configuration.mdx` — add `managed:` to the `repositories[]` schema\n\nSomething like:\n\n```yaml\nrepositories:\n  - path: ../my-project\n    source: github\n    repo: myorg/my-project\n    managed: true        # optional — see below\n```\n\n\u003e **`managed`** *(optional, default: omitted)*\n\u003e\n\u003e Controls whether `allagents workspace sync` clones or pulls this repository.\n\u003e\n\u003e - **Omitted** or **`false`** — allagents never touches the repository. Use this when another tool is responsible for materializing the source tree (e.g. a CI script that downloads a pinned snapshot).\n\u003e - **`true`** — allagents will `git clone` the repository from `source`/`repo` into `path` if it does not exist, and `git pull` it on subsequent syncs if the working tree is clean and on the expected branch.\n\u003e - **`\"sync\"`** — equivalent to `true`.\n\u003e\n\u003e The `source` and `repo` fields are required when `managed` is truthy.\n\n### 2. `docs/src/content/docs/docs/reference/cli.mdx` — document `--no-managed` under `workspace sync`\n\n```\nallagents workspace sync [--no-managed]\n\n  --no-managed   Skip git clone/pull operations for all repositories,\n                 regardless of their managed: field. Use this when\n                 another tool is responsible for populating repository\n                 directories and allagents should only handle plugins,\n                 skills, and AGENTS.md sync.\n```\n\n### 3. `docs/src/content/docs/docs/guides/workspaces.mdx` — add a short section on the managed vs unmanaged model\n\nA paragraph explaining the \"who owns the repo directory\" split would help downstream users reason about it:\n\n\u003e By default, allagents treats `repositories[]` entries as references only — it uses them for AGENTS.md / CLAUDE.md propagation and skill discovery, but it does not clone or pull the underlying git repository. To have allagents manage the repository directory itself, set `managed: true` on the entry. To explicitly disable repository management for a single sync run (for example, when a CI job has already populated the directory), pass `--no-managed` to `allagents workspace sync`.\n\n## Happy to contribute\n\nI can put up a docs PR with the three changes above if that would help — just confirm the desired wording and I'll follow the existing docs voice.\n\n## Context\n\nI hit this while wiring up a pinned per-year snapshot artifact pipeline in `WiseTechGlobal/WTG.AI.Prompts` ([PR #536](https://github.com/WiseTechGlobal/WTG.AI.Prompts/pull/536)). Our CI materializes each eval workspace at an optional pinned commit before calling `allagents workspace sync` to install skills, and I went looking for a documented way to make sure allagents could never clobber the pre-materialized tree. I found `--no-managed` in the CLI `--help` output but couldn't find any mention of it (or the corresponding `managed:` field) in the allagents.dev docs or the reference docs in this repo.","author":{"url":"https://github.com/christso","@type":"Person","name":"christso"},"datePublished":"2026-04-10T23:16:58.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/362/allagents/issues/362"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:6daf987f-c405-13e2-f966-3e07faf396ce
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB8C8:1929FC:1074A7F:16D368F:6A4CA2E6
html-safe-nonce5523f571a99f76d86e7cb6520afb9faaa9224e79977e05ae7c8f01369ac76a5f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCOEM4OjE5MjlGQzoxMDc0QTdGOjE2RDM2OEY6NkE0Q0EyRTYiLCJ2aXNpdG9yX2lkIjoiNDM3MTM0NjAzMjY0ODAzNzA5NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaca0c8c1662aed520508cd61a4f48a42cc779859bfb046c09ccebf3fc77f6e2c43
hovercard-subject-tagissue:4242163483
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/EntityProcess/allagents/362/issue_layout
twitter:imagehttps://opengraph.githubassets.com/f04d39732c40e12f9e4bd46aa6f08fdd5a55480873b23db9b2133fa761be0c32/EntityProcess/allagents/issues/362
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/f04d39732c40e12f9e4bd46aa6f08fdd5a55480873b23db9b2133fa761be0c32/EntityProcess/allagents/issues/362
og:image:altSummary The managed: field on repositories[] in workspace.yaml, and the matching --no-managed flag on allagents workspace sync, are real features in the code (v1.7.2) but are not documented in any ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechristso
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/EntityProcess/allagents git https://github.com/EntityProcess/allagents.git
octolytics-dimension-user_id8837957
octolytics-dimension-user_loginEntityProcess
octolytics-dimension-repository_id1139437609
octolytics-dimension-repository_nwoEntityProcess/allagents
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1139437609
octolytics-dimension-repository_network_root_nwoEntityProcess/allagents
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseae90d426644ca15e89bacceb72e51f4e9dbf85f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/EntityProcess/allagents/issues/362#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FEntityProcess%2Fallagents%2Fissues%2F362
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FEntityProcess%2Fallagents%2Fissues%2F362
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=EntityProcess%2Fallagents
Reloadhttps://github.com/EntityProcess/allagents/issues/362
Reloadhttps://github.com/EntityProcess/allagents/issues/362
Reloadhttps://github.com/EntityProcess/allagents/issues/362
Please reload this pagehttps://github.com/EntityProcess/allagents/issues/362
EntityProcess https://github.com/EntityProcess
allagentshttps://github.com/EntityProcess/allagents
Notifications https://github.com/login?return_to=%2FEntityProcess%2Fallagents
Fork 2 https://github.com/login?return_to=%2FEntityProcess%2Fallagents
Star 9 https://github.com/login?return_to=%2FEntityProcess%2Fallagents
Code https://github.com/EntityProcess/allagents
Issues 10 https://github.com/EntityProcess/allagents/issues
Pull requests 2 https://github.com/EntityProcess/allagents/pulls
Actions https://github.com/EntityProcess/allagents/actions
Projects https://github.com/EntityProcess/allagents/projects
Security and quality 0 https://github.com/EntityProcess/allagents/security
Insights https://github.com/EntityProcess/allagents/pulse
Code https://github.com/EntityProcess/allagents
Issues https://github.com/EntityProcess/allagents/issues
Pull requests https://github.com/EntityProcess/allagents/pulls
Actions https://github.com/EntityProcess/allagents/actions
Projects https://github.com/EntityProcess/allagents/projects
Security and quality https://github.com/EntityProcess/allagents/security
Insights https://github.com/EntityProcess/allagents/pulse
Document the managed: repository field and --no-managed workspace sync flaghttps://github.com/EntityProcess/allagents/issues/362#top
https://github.com/christso
christsohttps://github.com/christso
on Apr 10, 2026https://github.com/EntityProcess/allagents/issues/362#issue-4242163483
https://allagents.devhttps://allagents.dev
PR #536https://github.com/WiseTechGlobal/WTG.AI.Prompts/pull/536
AllAgents OSS Boardhttps://github.com/orgs/EntityProcess/projects/2
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.