René's URL Explorer Experiment


Title: feat: `allagents skill update` for per-skill refresh (separate from workspace sync) · Issue #375 · EntityProcess/allagents · GitHub

Open Graph Title: feat: `allagents skill update` for per-skill refresh (separate from workspace sync) · Issue #375 · EntityProcess/allagents

X Title: feat: `allagents skill update` for per-skill refresh (separate from workspace sync) · Issue #375 · EntityProcess/allagents

Description: Priority: medium · Depends on content-hash tracking issue for `--dry-run` to be meaningful. Problem The verb `allagents update` is the workspace sync command (`syncCmd` in `src/cli/commands/workspace.ts`). There is no per-skill update ve...

Open Graph Description: Priority: medium · Depends on content-hash tracking issue for `--dry-run` to be meaningful. Problem The verb `allagents update` is the workspace sync command (`syncCmd` in `src/cli/commands/workspa...

X Description: Priority: medium · Depends on content-hash tracking issue for `--dry-run` to be meaningful. Problem The verb `allagents update` is the workspace sync command (`syncCmd` in `src/cli/commands/workspa...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"feat: `allagents skill update` for per-skill refresh (separate from workspace sync)","articleBody":"\u003e **Priority:** medium · Depends on content-hash tracking issue for \\`--dry-run\\` to be meaningful.\n\n## Problem\n\nThe verb \\`allagents update\\` is the *workspace sync* command (\\`syncCmd\\` in \\`src/cli/commands/workspace.ts\\`). There is no per-skill update verb. To refresh a single skill today the user re-runs the global workspace sync, which is heavier than needed and provides no dry-run / drift report.\n\n\\`gh skill update [skill...]\\` covers exactly this gap: refresh installed skills by comparing recorded tree SHAs against the remote, with \\`--all\\`, \\`--force\\`, \\`--dry-run\\`, and \\`--unpin\\` flags. Reference: \\`cli/cli\\` \\`pkg/cmd/skills/update/update.go\\`.\n\n## Current behavior\n\n\\`\\`\\`bash\n$ allagents skill update   # or \\\"skills update\\\"\nerror: found 1 error\n  skill update\n  ^ Unknown arguments\n\n# Only workspace sync, which re-evaluates everything:\n$ allagents update\nSyncing plugins...\n\\`\\`\\`\n\n## Expected behavior\n\n\\`\\`\\`bash\n# Refresh all installed skills (TTY: prompts per drift; non-TTY: skips drift-with-no-pin)\n$ allagents skill update\nChecking 3 skills...\n✓ brainstorming  up to date\n↑ git-commit     v0.1.0 → v0.2.0 (updated)\n- code-review    pinned to v1.0.0, skipping\n\n# Refresh one named skill\n$ allagents skill update brainstorming\n\n# Apply all without prompting\n$ allagents skill update --all\n\n# Report drift only (read-only; no file writes)\n$ allagents skill update --dry-run\nChecking 3 skills...\n- brainstorming  up to date\n* git-commit     v0.1.0 → v0.2.0 (would update)\n- code-review    pinned to v1.0.0, skipping\n2 up to date, 1 update available, 0 pinned\n\n# Force re-download even when hashes match\n$ allagents skill update --force --all\n\n# Clear pin and move to latest\n$ allagents skill update git-commit --unpin\n\\`\\`\\`\n\nJSON mode emits the standard envelope with per-skill state:\n\n\\`\\`\\`bash\n$ allagents --json skill update --dry-run\n{\n  \\\"success\\\": true,\n  \\\"command\\\": \\\"skill update\\\",\n  \\\"data\\\": {\n    \\\"checked\\\": 3,\n    \\\"updates\\\": [\n      { \\\"skill\\\": \\\"git-commit\\\", \\\"source\\\": \\\"owner/repo\\\",\n        \\\"from\\\": \\\"v0.1.0\\\", \\\"to\\\": \\\"v0.2.0\\\", \\\"status\\\": \\\"available\\\" }\n    ],\n    \\\"upToDate\\\": [\\\"brainstorming\\\"],\n    \\\"pinned\\\": [\\\"code-review\\\"]\n  }\n}\n\\`\\`\\`\n\n## Verification gate (must pass before closing)\n\n\\`\\`\\`bash\nset -euo pipefail\nbun run build\nWS=\\$(mktemp -d)\ncd \\\"\\$WS\\\"\nallagents workspace init --client claude\n\n# Install one skill at a known older version\nallagents skills add brainstorming --from anthropics/superpowers --pin v0.1.0\n\n# (1) Dry-run does not mutate anything\nSNAPSHOT_BEFORE=\\$(find .claude .agents .allagents -type f -exec sha256sum {} + 2\u003e/dev/null | sort | sha256sum)\nallagents skill update --dry-run \u003e/dev/null\nSNAPSHOT_AFTER=\\$(find .claude .agents .allagents -type f -exec sha256sum {} + 2\u003e/dev/null | sort | sha256sum)\n[ \\\"\\$SNAPSHOT_BEFORE\\\" = \\\"\\$SNAPSHOT_AFTER\\\" ]\n\n# (2) JSON envelope shape is correct in dry-run mode\nallagents --json skill update --dry-run | jq -e '.command == \\\"skill update\\\"'\nallagents --json skill update --dry-run | jq -e '.data | has(\\\"upToDate\\\") and has(\\\"updates\\\") and has(\\\"pinned\\\")'\n\n# (3) --all applies without prompting (no TTY; depends on default behavior in non-interactive mode)\nallagents skill update --all \u003e/dev/null\n\n# (4) Pinned skill is skipped unless --unpin\nallagents --json skill update --all | jq -e '.data.pinned | length \u003e= 1 or .data.updates | length \u003e= 0'   # pinned listed\nallagents skill update brainstorming --unpin --all\njq -e '.sources[\\\"anthropics/superpowers\\\"].pinnedRef == null or (.sources[\\\"anthropics/superpowers\\\"] | has(\\\"pinnedRef\\\") | not)' .allagents/sync-state.json\n\n# (5) --force re-downloads even when hashes match — verify the file mtime changes\nHASH_BEFORE=\\$(jq -r '.sources[\\\"anthropics/superpowers\\\"].skills.brainstorming.contentHash' .allagents/sync-state.json)\nallagents skill update --force --all\nHASH_AFTER=\\$(jq -r '.sources[\\\"anthropics/superpowers\\\"].skills.brainstorming.contentHash' .allagents/sync-state.json)\n[ \\\"\\$HASH_BEFORE\\\" = \\\"\\$HASH_AFTER\\\" ]   # content same, but updatedAt should have moved\njq -e '.sources[\\\"anthropics/superpowers\\\"].skills.brainstorming.updatedAt' .allagents/sync-state.json\n\n# (6) Non-interactive without --all: skill update behaves predictably (does not block on a prompt)\ntimeout 10 allagents skill update \u003c/dev/null\n\ncd / \u0026\u0026 rm -rf \\\"\\$WS\\\"\n\\`\\`\\`\n\nAll six checks must pass.\n\n## Implementation notes\n\n- Add \\`updateCmd\\` to \\`src/cli/commands/plugin-skills.ts::skillsCmd\\` with flags \\`--all\\`, \\`--force\\`, \\`--dry-run\\`, \\`--unpin\\`, and an optional positional skill name (\\`cmd-ts\\` \\`positional({ type: optional(string) })\\`).\n- Drift detection requires the \\`sources\\` block from the companion content-hashes issue. Without it, \\`--dry-run\\` collapses into a no-op.\n- Non-TTY default behavior: skip skills that would prompt (mirrors current \\`isJsonMode()\\` gating). Document this in the meta's \\`whenToUse\\`.\n- Walk every known agent-host directory at both scopes to find installed skills (don't require a single workspace.yaml — the skill might have been added at user scope). \\`gh skill\\`'s reference impl does the same in \\`pkg/cmd/skills/update/update.go::scanInstalledSkills\\`.\n- For \\`--unpin\\`: clear \\`pinnedRef\\` in sync-state before resolving, then resolve to latest. Equivalent to running install with no \\`--pin\\`.\n- Add a corresponding meta in \\`src/cli/metadata/plugin-skills.ts\\` and add it to \\`allCommands\\` in \\`src/cli/agent-help.ts\\` (this is also covered by the agent-help bug issue — coordinate).\n\n## Refs\n\n- Reference impl: \\`cli/cli\\` \\`pkg/cmd/skills/update/update.go\\`.\n- Companion wiki page: \\`concepts/allagents-vs-gh-skill.md\\` § \\\"Update semantics\\\".\n- Depends on: content-hash tracking issue.\n- Related: version pinning issue (defines \\`pinnedRef\\`).","author":{"url":"https://github.com/christso","@type":"Person","name":"christso"},"datePublished":"2026-05-12T10:57:49.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/375/allagents/issues/375"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:c9e96be5-7bb0-8554-9819-7628b868cb6d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE8D8:DF303:7FE5FF:B9EB0D:6A4E1230
html-safe-nonce708022e78f4a3edbd357b04f29c166550d1945b961d05c2f339012c86322c763
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFOEQ4OkRGMzAzOjdGRTVGRjpCOUVCMEQ6NkE0RTEyMzAiLCJ2aXNpdG9yX2lkIjoiMjU5OTY3MTA3Mzg2MDM1ODcwNCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac1b17a8ef5a5cfefc0e09eeb47a24a2b5cdb85daf790bbc6d056dcebc451310b5
hovercard-subject-tagissue:4428489180
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/375/issue_layout
twitter:imagehttps://opengraph.githubassets.com/00217bf1bb4cbdec2292765c3bfa0146866e985e3f98851ec7c3cbe06dc8c6bc/EntityProcess/allagents/issues/375
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/00217bf1bb4cbdec2292765c3bfa0146866e985e3f98851ec7c3cbe06dc8c6bc/EntityProcess/allagents/issues/375
og:image:altPriority: medium · Depends on content-hash tracking issue for `--dry-run` to be meaningful. Problem The verb `allagents update` is the workspace sync command (`syncCmd` in `src/cli/commands/workspa...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechristso
hostnamegithub.com
expected-hostnamegithub.com
None030096ee0db095447bfe77409d33bfac127ca7128299c58deef27c52eaa1b1f0
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
releaseea9187571e3edc5f2780f750631138669441ca50
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/EntityProcess/allagents/issues/375#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FEntityProcess%2Fallagents%2Fissues%2F375
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%2F375
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/375
Reloadhttps://github.com/EntityProcess/allagents/issues/375
Reloadhttps://github.com/EntityProcess/allagents/issues/375
Please reload this pagehttps://github.com/EntityProcess/allagents/issues/375
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
#383https://github.com/EntityProcess/allagents/pull/383
feat: allagents skill update for per-skill refresh (separate from workspace sync)https://github.com/EntityProcess/allagents/issues/375#top
#383https://github.com/EntityProcess/allagents/pull/383
enhancementNew feature or requesthttps://github.com/EntityProcess/allagents/issues?q=state%3Aopen%20label%3A%22enhancement%22
https://github.com/christso
christsohttps://github.com/christso
on May 12, 2026https://github.com/EntityProcess/allagents/issues/375#issue-4428489180
enhancementNew feature or requesthttps://github.com/EntityProcess/allagents/issues?q=state%3Aopen%20label%3A%22enhancement%22
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.