agentsys 5.3.6 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/.agnix.toml +17 -7
  2. package/.claude-plugin/marketplace.json +13 -2
  3. package/.claude-plugin/plugin.json +1 -1
  4. package/.gitmodules +3 -0
  5. package/AGENTS.md +4 -4
  6. package/CHANGELOG.md +28 -0
  7. package/README.md +46 -5
  8. package/lib/adapter-transforms.js +3 -1
  9. package/package.json +1 -1
  10. package/site/assets/css/main.css +39 -1
  11. package/site/assets/js/main.js +24 -0
  12. package/site/content.json +26 -25
  13. package/site/index.html +90 -15
  14. package/site/ux-spec.md +9 -9
  15. package/agent-knowledge/AGENTS.md +0 -231
  16. package/agent-knowledge/acp-with-codex-gemini-copilot-claude.md +0 -504
  17. package/agent-knowledge/ai-cli-advanced-integration-patterns.md +0 -670
  18. package/agent-knowledge/ai-cli-non-interactive-programmatic-usage.md +0 -1394
  19. package/agent-knowledge/all-in-one-plus-modular-packages.md +0 -576
  20. package/agent-knowledge/cli-browser-automation-agents.md +0 -936
  21. package/agent-knowledge/github-org-project-management.md +0 -319
  22. package/agent-knowledge/github-org-structure-patterns.md +0 -268
  23. package/agent-knowledge/kiro-supervised-autopilot.md +0 -400
  24. package/agent-knowledge/multi-product-org-docs.md +0 -622
  25. package/agent-knowledge/oss-org-naming-patterns.md +0 -368
  26. package/agent-knowledge/resources/acp-with-codex-gemini-copilot-claude-sources.json +0 -408
  27. package/agent-knowledge/resources/ai-cli-non-interactive-programmatic-usage-sources.json +0 -500
  28. package/agent-knowledge/resources/all-in-one-plus-modular-packages-sources.json +0 -310
  29. package/agent-knowledge/resources/cli-browser-automation-agents-sources.json +0 -428
  30. package/agent-knowledge/resources/github-org-project-management-sources.json +0 -239
  31. package/agent-knowledge/resources/github-org-structure-patterns-sources.json +0 -293
  32. package/agent-knowledge/resources/kiro-supervised-autopilot-sources.json +0 -135
  33. package/agent-knowledge/resources/multi-product-org-docs-sources.json +0 -514
  34. package/agent-knowledge/resources/oss-org-naming-patterns-sources.json +0 -458
  35. package/agent-knowledge/resources/skill-plugin-distribution-patterns-sources.json +0 -290
  36. package/agent-knowledge/resources/terminal-browsers-agent-automation-sources.json +0 -758
  37. package/agent-knowledge/resources/web-session-persistence-cli-agents-sources.json +0 -528
  38. package/agent-knowledge/skill-plugin-distribution-patterns.md +0 -661
  39. package/agent-knowledge/terminal-browsers-agent-automation.md +0 -776
  40. package/agent-knowledge/web-session-persistence-cli-agents.md +0 -1352
@@ -1,293 +0,0 @@
1
- {
2
- "topic": "GitHub organization structure patterns for developer tool ecosystems",
3
- "slug": "github-org-structure-patterns",
4
- "generated": "2026-02-21T00:00:00Z",
5
- "depth": "deep",
6
- "totalSources": 18,
7
- "sources": [
8
- {
9
- "url": "https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file",
10
- "title": "Creating a default community health file - GitHub Docs",
11
- "qualityScore": 98,
12
- "authority": 10,
13
- "recency": 10,
14
- "depth": 9,
15
- "examples": 9,
16
- "uniqueness": 7,
17
- "keyInsights": [
18
- ".github repo must be public for defaults to cascade org-wide",
19
- "Supported default files: CODE_OF_CONDUCT, CONTRIBUTING, FUNDING.yml, GOVERNANCE, SECURITY, SUPPORT, issue/PR templates",
20
- "If repo has ANY files in .github/ISSUE_TEMPLATE, org defaults don't apply to that repo",
21
- "License files cannot be org-level defaults"
22
- ]
23
- },
24
- {
25
- "url": "https://docs.github.com/en/actions/using-workflows/reusing-workflows",
26
- "title": "Reusing workflows - GitHub Actions Docs",
27
- "qualityScore": 97,
28
- "authority": 10,
29
- "recency": 10,
30
- "depth": 9,
31
- "examples": 9,
32
- "uniqueness": 6,
33
- "keyInsights": [
34
- "workflow_call trigger enables reusable workflows",
35
- "Reference syntax: {owner}/{repo}/.github/workflows/{filename}@{ref}",
36
- "Maximum 10 nesting levels",
37
- "Permissions can only be maintained or reduced, never elevated",
38
- "secrets: inherit passes caller secrets implicitly"
39
- ]
40
- },
41
- {
42
- "url": "https://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization",
43
- "title": "Creating starter workflows for your organization - GitHub Docs",
44
- "qualityScore": 90,
45
- "authority": 10,
46
- "recency": 9,
47
- "depth": 8,
48
- "examples": 8,
49
- "uniqueness": 6,
50
- "keyInsights": [
51
- "Starter workflows live in .github repo under workflow-templates/",
52
- "5 categories: CI, Deployments, Automation, Code-scanning, Pages",
53
- "Each requires .yml and .properties.json metadata file",
54
- "$default-branch and $cron-daily variable substitution supported"
55
- ]
56
- },
57
- {
58
- "url": "https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners",
59
- "title": "About CODEOWNERS - GitHub Docs",
60
- "qualityScore": 95,
61
- "authority": 10,
62
- "recency": 10,
63
- "depth": 9,
64
- "examples": 9,
65
- "uniqueness": 6,
66
- "keyInsights": [
67
- "Last matching pattern wins (bottom-to-top precedence)",
68
- "Can map paths to GitHub teams, not just individual users",
69
- "Auto-requests review from owners on PRs touching owned paths"
70
- ]
71
- },
72
- {
73
- "url": "https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages",
74
- "title": "About GitHub Pages - GitHub Docs",
75
- "qualityScore": 88,
76
- "authority": 10,
77
- "recency": 9,
78
- "depth": 7,
79
- "examples": 6,
80
- "uniqueness": 5,
81
- "keyInsights": [
82
- "Org site: <owner>.github.io repo, one per account",
83
- "Project sites: per-repo at <owner>.github.io/<repo>",
84
- "Custom domains supported",
85
- "Free plan: public repos only"
86
- ]
87
- },
88
- {
89
- "url": "https://github.com/oven-sh",
90
- "title": "oven-sh GitHub Organization (Bun)",
91
- "qualityScore": 85,
92
- "authority": 9,
93
- "recency": 10,
94
- "depth": 7,
95
- "examples": 8,
96
- "uniqueness": 8,
97
- "keyInsights": [
98
- "7 visible repos: bun (87.5k stars), awesome-bun, setup-bun, homebrew-bun, forks",
99
- "Minimal focused org model - every repo has clear purpose",
100
- "Setup action (setup-bun) is a first-class citizen"
101
- ]
102
- },
103
- {
104
- "url": "https://github.com/denoland",
105
- "title": "denoland GitHub Organization (Deno)",
106
- "qualityScore": 88,
107
- "authority": 9,
108
- "recency": 10,
109
- "depth": 8,
110
- "examples": 8,
111
- "uniqueness": 8,
112
- "keyInsights": [
113
- "216+ repos: runtime, std library, frameworks, toolchains",
114
- "deno (106k stars), fresh (13.8k), rusty_v8, std",
115
- "Standard library is separate monorepo with own release cadence",
116
- "Verified domain",
117
- "Now publishes to JSR (JavaScript Registry)"
118
- ]
119
- },
120
- {
121
- "url": "https://github.com/withastro",
122
- "title": "withastro GitHub Organization (Astro)",
123
- "qualityScore": 90,
124
- "authority": 9,
125
- "recency": 10,
126
- "depth": 8,
127
- "examples": 8,
128
- "uniqueness": 8,
129
- "keyInsights": [
130
- "51 repos: astro (57k), starlight, compiler, docs, roadmap (RFCs), action",
131
- "roadmap repo used for public RFCs and planning",
132
- "pnpm workspaces for monorepo management",
133
- "Framework org archetype with clear subsystem separation"
134
- ]
135
- },
136
- {
137
- "url": "https://github.com/tauri-apps/tauri/blob/dev/.github/CODEOWNERS",
138
- "title": "tauri-apps CODEOWNERS",
139
- "qualityScore": 82,
140
- "authority": 8,
141
- "recency": 9,
142
- "depth": 6,
143
- "examples": 10,
144
- "uniqueness": 9,
145
- "keyInsights": [
146
- "Two-team model: * @tauri-apps/wg-tauri and .github @tauri-apps/wg-devops",
147
- "Working groups as GitHub Teams for persistent ownership",
148
- "DevOps team owns .github path — prevents accidental CI breakage"
149
- ]
150
- },
151
- {
152
- "url": "https://github.com/biomejs/biome/blob/main/CONTRIBUTING.md",
153
- "title": "Biome CONTRIBUTING.md",
154
- "qualityScore": 88,
155
- "authority": 8,
156
- "recency": 10,
157
- "depth": 8,
158
- "examples": 9,
159
- "uniqueness": 9,
160
- "keyInsights": [
161
- "AI disclosure section is placed first in the contributing guide",
162
- "Uses just (Justfile) for all project commands",
163
- "Changesets for versioning and changelog",
164
- "Branch targeting: main vs next depending on change stability"
165
- ]
166
- },
167
- {
168
- "url": "https://github.com/oxc-project/oxc/blob/main/CONTRIBUTING.md",
169
- "title": "OXC CONTRIBUTING.md",
170
- "qualityScore": 85,
171
- "authority": 8,
172
- "recency": 10,
173
- "depth": 8,
174
- "examples": 8,
175
- "uniqueness": 9,
176
- "keyInsights": [
177
- "AI accountability policy: contributor responsible for all AI-generated code",
178
- "Good first issues labeled prominently",
179
- "Discord community link in contributing guide",
180
- "Quality gates for AI-assisted contributions"
181
- ]
182
- },
183
- {
184
- "url": "https://github.com/withastro/astro/blob/main/CONTRIBUTING.md",
185
- "title": "Astro CONTRIBUTING.md",
186
- "qualityScore": 87,
187
- "authority": 8,
188
- "recency": 10,
189
- "depth": 8,
190
- "examples": 8,
191
- "uniqueness": 7,
192
- "keyInsights": [
193
- "Node ^22.12, pnpm ^10.28 requirements",
194
- "GitHub Codespaces support for zero-install onboarding",
195
- "p1-p5 priority scale for issues",
196
- "Mocha to node:test migration"
197
- ]
198
- },
199
- {
200
- "url": "https://github.com/oven-sh/bun/blob/main/CONTRIBUTING.md",
201
- "title": "Bun CONTRIBUTING.md",
202
- "qualityScore": 85,
203
- "authority": 8,
204
- "recency": 10,
205
- "depth": 7,
206
- "examples": 8,
207
- "uniqueness": 8,
208
- "keyInsights": [
209
- "10-30 minute first setup expectation set explicitly",
210
- "LLVM 21.1.8 required (specific version)",
211
- "Zig compiler auto-installed by build script",
212
- "bun bd alias for debug builds"
213
- ]
214
- },
215
- {
216
- "url": "https://github.com/unjs",
217
- "title": "unjs GitHub Organization",
218
- "qualityScore": 80,
219
- "authority": 8,
220
- "recency": 10,
221
- "depth": 7,
222
- "examples": 7,
223
- "uniqueness": 8,
224
- "keyInsights": [
225
- "Utility ecosystem model: dozens of small focused packages",
226
- "Each package is own repo with independent release cycle",
227
- "Org README serves as package index",
228
- "Key packages: nitro, unbuild, h3, ofetch"
229
- ]
230
- },
231
- {
232
- "url": "https://github.com/sindresorhus",
233
- "title": "sindresorhus GitHub Profile",
234
- "qualityScore": 75,
235
- "authority": 9,
236
- "recency": 8,
237
- "depth": 5,
238
- "examples": 5,
239
- "uniqueness": 8,
240
- "keyInsights": [
241
- "Hundreds of individual focused packages, each in own repo",
242
- "Single-purpose packages with independent versioning",
243
- "User/org profile README as central index"
244
- ]
245
- },
246
- {
247
- "url": "https://docs.github.com/en/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile",
248
- "title": "Customizing your organization's profile - GitHub Docs",
249
- "qualityScore": 88,
250
- "authority": 10,
251
- "recency": 10,
252
- "depth": 7,
253
- "examples": 6,
254
- "uniqueness": 6,
255
- "keyInsights": [
256
- "Public README: .github repo, profile/README.md",
257
- "Member-only README: .github-private repo, profile/README.md",
258
- "Pin up to 6 repos for public view, separate 6 for member view",
259
- "Custom avatar via upload or Gravatar"
260
- ]
261
- },
262
- {
263
- "url": "https://github.com/oxc-project",
264
- "title": "oxc-project GitHub Organization",
265
- "qualityScore": 78,
266
- "authority": 8,
267
- "recency": 10,
268
- "depth": 6,
269
- "examples": 6,
270
- "uniqueness": 8,
271
- "keyInsights": [
272
- "AI usage policy prominently in contributing docs",
273
- "Good first issues labeled for onboarding",
274
- "Discord community integration"
275
- ]
276
- },
277
- {
278
- "url": "https://docs.github.com/en/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization",
279
- "title": "Verifying a domain for your organization - GitHub Docs",
280
- "qualityScore": 80,
281
- "authority": 10,
282
- "recency": 9,
283
- "depth": 6,
284
- "examples": 5,
285
- "uniqueness": 5,
286
- "keyInsights": [
287
- "Verified domain adds authority badge to org profile",
288
- "Required for SAML SSO enforcement",
289
- "DNS TXT record verification"
290
- ]
291
- }
292
- ]
293
- }
@@ -1,135 +0,0 @@
1
- {
2
- "topic": "Kiro supervised mode, autopilot mode, and approval workflow details",
3
- "slug": "kiro-supervised-autopilot",
4
- "generated": "2026-03-02T00:00:00Z",
5
- "depth": "brief",
6
- "totalSources": 6,
7
- "sources": [
8
- {
9
- "url": "https://kiro.dev/docs/chat/",
10
- "title": "Kiro Chat Modes Documentation",
11
- "qualityScore": 95,
12
- "scores": {
13
- "authority": 10,
14
- "recency": 10,
15
- "depth": 9,
16
- "examples": 9,
17
- "uniqueness": 7
18
- },
19
- "keyInsights": [
20
- "Autopilot is the default mode for autonomous execution",
21
- "Supervised mode pauses after each turn for file edit approval",
22
- "Changes presented as individual hunks for granular review",
23
- "Users can accept/reject/discuss individual hunks",
24
- "Vibe mode pairs with both autopilot and supervised modes"
25
- ],
26
- "codeExamples": [],
27
- "extractedAt": "2026-03-02T00:00:00Z"
28
- },
29
- {
30
- "url": "https://kiro.dev/docs/chat/autopilot/",
31
- "title": "Kiro Autopilot Mode Reference",
32
- "qualityScore": 92,
33
- "scores": {
34
- "authority": 10,
35
- "recency": 10,
36
- "depth": 8,
37
- "examples": 9,
38
- "uniqueness": 6
39
- },
40
- "keyInsights": [
41
- "Autopilot executes tasks end-to-end without approval",
42
- "Agent creates/modifies files across multiple locations autonomously",
43
- "Users can view diffs, revert all changes, or interrupt execution",
44
- "Files written to disk immediately upon agent completion",
45
- "No intermediate approval gate in autopilot mode"
46
- ],
47
- "codeExamples": [],
48
- "extractedAt": "2026-03-02T00:00:00Z"
49
- },
50
- {
51
- "url": "https://kiro.dev/docs/chat/vibe/",
52
- "title": "Kiro Vibe Mode Documentation",
53
- "qualityScore": 85,
54
- "scores": {
55
- "authority": 10,
56
- "recency": 10,
57
- "depth": 7,
58
- "examples": 8,
59
- "uniqueness": 6
60
- },
61
- "keyInsights": [
62
- "Vibe mode is conversational and exploratory",
63
- "Pairs with autopilot for rapid prototyping",
64
- "Pairs with supervised for learning and code review",
65
- "Mode combinations guide workflow selection",
66
- "Spec mode provides alternative structured approach"
67
- ],
68
- "codeExamples": [],
69
- "extractedAt": "2026-03-02T00:00:00Z"
70
- },
71
- {
72
- "url": "https://kiro.dev/docs/steering/",
73
- "title": "Kiro Steering Files Documentation",
74
- "qualityScore": 80,
75
- "scores": {
76
- "authority": 10,
77
- "recency": 9,
78
- "depth": 7,
79
- "examples": 8,
80
- "uniqueness": 5
81
- },
82
- "keyInsights": [
83
- "Steering files guide agent behavior across modes",
84
- "Inclusion modes (always, fileMatch, manual, auto) control file loading",
85
- "Steering applies to both autopilot and supervised workflows",
86
- "Product, tech, and structure files provide persistent context",
87
- "Custom steering enables mode-specific guidance"
88
- ],
89
- "codeExamples": [],
90
- "extractedAt": "2026-03-02T00:00:00Z"
91
- },
92
- {
93
- "url": "https://kiro.dev/docs/hooks/",
94
- "title": "Kiro Hooks and Automation",
95
- "qualityScore": 78,
96
- "scores": {
97
- "authority": 10,
98
- "recency": 9,
99
- "depth": 6,
100
- "examples": 8,
101
- "uniqueness": 5
102
- },
103
- "keyInsights": [
104
- "PreToolUse hooks can validate or block command execution",
105
- "Exit code 2 blocks tool invocation",
106
- "Hooks provide approval-like behavior for commands",
107
- "Command execution happens independently in both modes",
108
- "Hook output added to agent context for certain event types"
109
- ],
110
- "codeExamples": [],
111
- "extractedAt": "2026-03-02T00:00:00Z"
112
- },
113
- {
114
- "url": "https://kiro.dev/docs/getting-started/first-project/",
115
- "title": "Kiro First Project Getting Started",
116
- "qualityScore": 76,
117
- "scores": {
118
- "authority": 10,
119
- "recency": 9,
120
- "depth": 5,
121
- "examples": 7,
122
- "uniqueness": 4
123
- },
124
- "keyInsights": [
125
- "Mode selection affects workflow approach",
126
- "Settings provide UI toggle for autopilot/supervised",
127
- "Mid-session mode switching is supported",
128
- "Different modes for different task types",
129
- "Hands-on walkthrough demonstrates mode selection"
130
- ],
131
- "codeExamples": [],
132
- "extractedAt": "2026-03-02T00:00:00Z"
133
- }
134
- ]
135
- }