agentsys 5.3.7 → 5.4.1

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 +37 -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 +4 -4
  13. package/site/index.html +82 -7
  14. package/site/ux-spec.md +5 -5
  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,428 +0,0 @@
1
- {
2
- "topic": "CLI-first browser automation for AI agents",
3
- "slug": "cli-browser-automation-agents",
4
- "generated": "2026-02-20T00:00:00Z",
5
- "depth": "deep",
6
- "totalSources": 32,
7
- "sources": [
8
- {
9
- "url": "https://github.com/microsoft/playwright/blob/main/packages/playwright-core/src/cli/program.ts",
10
- "title": "Playwright CLI Source - program.ts",
11
- "qualityScore": 97,
12
- "scores": { "authority": 10, "recency": 10, "depth": 10, "examples": 10, "uniqueness": 7 },
13
- "keyInsights": [
14
- "Complete CLI command list: codegen, screenshot, pdf, open, show-trace",
15
- "screenshot command: <url> <filename> with --full-page, --wait-for-selector, --wait-for-timeout",
16
- "pdf command: <url> <filename>, Chromium-only, --paper-format",
17
- "--save-storage captures storageState at session end",
18
- "--load-storage injects storageState into browser context",
19
- "Standard options shared across all commands: --browser, --device, --viewport-size, --user-data-dir, --lang, --timezone, --proxy-server"
20
- ]
21
- },
22
- {
23
- "url": "https://github.com/microsoft/playwright/blob/main/packages/playwright-core/src/cli/program.ts",
24
- "title": "Playwright CLI - screenshot and pdf syntax",
25
- "qualityScore": 95,
26
- "scores": { "authority": 10, "recency": 10, "depth": 9, "examples": 9, "uniqueness": 6 },
27
- "keyInsights": [
28
- "pdf --paper-format accepts: Letter, Legal, A0-A6, Tabloid, Ledger",
29
- "--save-storage output format: JSON with cookies[] and origins[] arrays",
30
- "screenshot -b webkit <url> example.png",
31
- "open command launches interactive headed browser"
32
- ]
33
- },
34
- {
35
- "url": "https://github.com/microsoft/playwright/blob/main/packages/playwright-core/src/server/browserContext.ts",
36
- "title": "Playwright storageState() method implementation",
37
- "qualityScore": 90,
38
- "scores": { "authority": 10, "recency": 10, "depth": 9, "examples": 7, "uniqueness": 4 },
39
- "keyInsights": [
40
- "storageState returns {cookies: NetworkCookie[], origins: [{origin, localStorage, indexedDB}]}",
41
- "Cookies can be filtered by name, domain, path patterns",
42
- "Iterates existing pages then creates temp pages to access all origins"
43
- ]
44
- },
45
- {
46
- "url": "https://github.com/microsoft/playwright/blob/main/packages/playwright-core/src/server/network.ts",
47
- "title": "Playwright NetworkCookie type",
48
- "qualityScore": 88,
49
- "scores": { "authority": 10, "recency": 10, "depth": 8, "examples": 6, "uniqueness": 4 },
50
- "keyInsights": [
51
- "NetworkCookie fields: name, value, domain, path, expires, httpOnly, secure, sameSite",
52
- "expires is Unix epoch float, -1 means session cookie"
53
- ]
54
- },
55
- {
56
- "url": "https://github.com/microsoft/playwright/blob/main/docs/src/auth.md",
57
- "title": "Playwright Authentication Documentation",
58
- "qualityScore": 95,
59
- "scores": { "authority": 10, "recency": 9, "depth": 10, "examples": 9, "uniqueness": 6 },
60
- "keyInsights": [
61
- "Recommended: save storageState to playwright/.auth/ directory, gitignore it",
62
- "Setup project pattern: dedicate one project to authenticate, others depend on it",
63
- "Per-worker auth using parallelIndex for isolated accounts",
64
- "context.storageState() called after login, saved to file"
65
- ]
66
- },
67
- {
68
- "url": "https://github.com/microsoft/playwright/blob/main/docs/src/codegen.md",
69
- "title": "Playwright Codegen Documentation",
70
- "qualityScore": 93,
71
- "scores": { "authority": 10, "recency": 9, "depth": 9, "examples": 9, "uniqueness": 7 },
72
- "keyInsights": [
73
- "npx playwright codegen [URL] opens headed browser + code recording panel",
74
- "--save-storage=auth.json saves cookies/localStorage/IndexedDB at session end",
75
- "--viewport-size, --device, --color-scheme, --timezone, --geolocation, --lang options",
76
- "Recordings can be saved with -o output.js"
77
- ]
78
- },
79
- {
80
- "url": "https://raw.githubusercontent.com/microsoft/playwright-mcp/main/README.md",
81
- "title": "Playwright MCP README - Tools List",
82
- "qualityScore": 97,
83
- "scores": { "authority": 10, "recency": 10, "depth": 10, "examples": 9, "uniqueness": 9 },
84
- "keyInsights": [
85
- "30+ MCP tools: browser_navigate, browser_click, browser_type, browser_snapshot, browser_take_screenshot, browser_evaluate, browser_fill_form, browser_select_option, browser_hover, browser_drag, browser_press_key, browser_handle_dialog, browser_file_upload, browser_network_requests, browser_console_messages, browser_wait_for, browser_tabs, browser_resize, browser_close, browser_install",
86
- "Vision mode adds: browser_mouse_click_xy, browser_mouse_move_xy, browser_mouse_drag_xy, browser_mouse_wheel, browser_mouse_down/up",
87
- "PDF mode adds: browser_pdf_save",
88
- "Testing mode adds: browser_verify_text_visible, browser_verify_element_visible, browser_generate_locator, browser_verify_value, browser_verify_list_visible",
89
- "browser_snapshot returns accessibility tree (not screenshot) - token-efficient",
90
- "browser_run_code executes custom Playwright snippets"
91
- ]
92
- },
93
- {
94
- "url": "https://raw.githubusercontent.com/microsoft/playwright-mcp/main/README.md",
95
- "title": "Playwright MCP README - Auth and Config",
96
- "qualityScore": 95,
97
- "scores": { "authority": 10, "recency": 10, "depth": 10, "examples": 8, "uniqueness": 8 },
98
- "keyInsights": [
99
- "Three profile modes: persistent (default), isolated (--isolated), extension (--extension)",
100
- "--storage-state: load cookies+localStorage from Playwright storageState JSON file",
101
- "--user-data-dir: use/persist real Chrome profile with existing logins",
102
- "--cdp-endpoint: connect to already-running Chrome via CDP URL",
103
- "--save-session: save entire Playwright session to output directory",
104
- "Chrome Extension bridge (--extension flag) connects to existing browser tabs with active sessions",
105
- "--init-page: TypeScript file for custom page-level setup",
106
- "--init-script: JavaScript evaluated before page scripts"
107
- ]
108
- },
109
- {
110
- "url": "https://raw.githubusercontent.com/microsoft/playwright-mcp/main/README.md",
111
- "title": "Playwright MCP README - Installation and MCP Config",
112
- "qualityScore": 93,
113
- "scores": { "authority": 10, "recency": 10, "depth": 9, "examples": 9, "uniqueness": 7 },
114
- "keyInsights": [
115
- "Install: add {command: npx, args: [@playwright/mcp@latest]} to mcpServers config",
116
- "Supported clients: VS Code, Cursor, Claude Desktop, Cline, Windsurf",
117
- "--caps argument enables capability sets: vision, pdf, devtools, testing",
118
- "Default mode: accessibility snapshots (not screenshots), no vision model required",
119
- "--headless flag for headless mode; default is headed",
120
- "--browser: chrome, firefox, webkit, msedge",
121
- "--allowed-origins and --blocked-origins for security"
122
- ]
123
- },
124
- {
125
- "url": "https://github.com/browser-use/browser-use",
126
- "title": "browser-use GitHub Repository",
127
- "qualityScore": 92,
128
- "scores": { "authority": 9, "recency": 10, "depth": 9, "examples": 10, "uniqueness": 9 },
129
- "keyInsights": [
130
- "Python library designed for LLM agents to control browsers",
131
- "78.6K GitHub stars as of 2026",
132
- "Provides both CLI (browser-use open/state/click/type/screenshot/close) and Python API",
133
- "CLI maintains stateful session between commands",
134
- "LLM-native: elements presented as indexed list for LLM selection",
135
- "ChatBrowserUse model optimized for browser automation (3-5x faster than generic models)"
136
- ]
137
- },
138
- {
139
- "url": "https://raw.githubusercontent.com/browser-use/browser-use/main/README.md",
140
- "title": "browser-use README - Code Examples",
141
- "qualityScore": 93,
142
- "scores": { "authority": 9, "recency": 10, "depth": 9, "examples": 10, "uniqueness": 9 },
143
- "keyInsights": [
144
- "CLI: browser-use open [URL], browser-use state, browser-use click [index], browser-use type [text], browser-use screenshot [file], browser-use close",
145
- "Agent API: Agent(task=..., llm=..., browser=...)",
146
- "Auth: reuse existing Chrome profile; profile sync via profile.sh script",
147
- "Custom tools via @tools.action decorator",
148
- "Sandbox deployment pattern for production",
149
- "Install: uv add browser-use + uvx browser-use install (for Chromium)"
150
- ]
151
- },
152
- {
153
- "url": "https://github.com/cyrus-and/chrome-remote-interface",
154
- "title": "chrome-remote-interface GitHub Repository",
155
- "qualityScore": 85,
156
- "scores": { "authority": 8, "recency": 7, "depth": 8, "examples": 8, "uniqueness": 8 },
157
- "keyInsights": [
158
- "Node.js CDP client with CLI: chrome-remote-interface new/list/close/inspect/version/activate",
159
- "inspect subcommand provides interactive REPL with autocompletion",
160
- "REPL commands: .help, .reset, .target",
161
- "REPL usage: Runtime.evaluate({expression: '...'}), Page.navigate({url: '...'})",
162
- "npm install -g chrome-remote-interface for CLI"
163
- ]
164
- },
165
- {
166
- "url": "https://github.com/cyrus-and/chrome-remote-interface/blob/master/README.md",
167
- "title": "chrome-remote-interface README - Full Reference",
168
- "qualityScore": 87,
169
- "scores": { "authority": 8, "recency": 7, "depth": 9, "examples": 8, "uniqueness": 8 },
170
- "keyInsights": [
171
- "CLI target management: new 'http://url', close '<id>', list",
172
- "Library API: CDP() connects to localhost:9222 by default",
173
- "Network.getAllCookies() returns all browser cookies",
174
- "Page.navigate({url}) for navigation",
175
- "Supports custom protocol descriptors"
176
- ]
177
- },
178
- {
179
- "url": "https://github.com/GoogleChrome/chrome-launcher",
180
- "title": "chrome-launcher GitHub Repository",
181
- "qualityScore": 82,
182
- "scores": { "authority": 8, "recency": 8, "depth": 7, "examples": 7, "uniqueness": 6 },
183
- "keyInsights": [
184
- "Node.js package for launching Chrome with sensible defaults",
185
- "Opens Chrome's remote-debugging-port on an available port",
186
- "ChromeLauncher.launch({startingUrl}) for headed launch",
187
- "Recommend chrome-remote-interface for CDP interaction after launch",
188
- "Handles profile management and cleanup"
189
- ]
190
- },
191
- {
192
- "url": "https://github.com/GoogleChromeLabs/chrome-for-testing",
193
- "title": "Chrome for Testing",
194
- "qualityScore": 78,
195
- "scores": { "authority": 9, "recency": 10, "depth": 6, "examples": 5, "uniqueness": 5 },
196
- "keyInsights": [
197
- "Chrome flavor specifically for automation, no automatic updates",
198
- "Binaries: chrome, chromedriver, chrome-headless-shell",
199
- "Platforms: linux64, mac-arm64, mac-x64, win32, win64",
200
- "Managed via @puppeteer/browsers package"
201
- ]
202
- },
203
- {
204
- "url": "https://github.com/browserless/browserless",
205
- "title": "Browserless GitHub Repository",
206
- "qualityScore": 85,
207
- "scores": { "authority": 8, "recency": 9, "depth": 8, "examples": 8, "uniqueness": 8 },
208
- "keyInsights": [
209
- "Docker-based headless browser as a service",
210
- "REST API: /screenshot, /pdf, /html, /scrape, /function endpoints",
211
- "WebSocket CDP endpoint for Puppeteer/Playwright connection",
212
- "Self-hosted or cloud deployment",
213
- "Session management with configurable concurrency",
214
- "Real-time debug viewer"
215
- ]
216
- },
217
- {
218
- "url": "https://github.com/steel-dev/steel-browser",
219
- "title": "Steel Browser GitHub Repository",
220
- "qualityScore": 84,
221
- "scores": { "authority": 7, "recency": 10, "depth": 8, "examples": 8, "uniqueness": 9 },
222
- "keyInsights": [
223
- "Open-source browser API for AI agents",
224
- "Sessions API: POST /v1/sessions with blockAds, proxyUrl, dimensions options",
225
- "Quick actions: POST /v1/scrape, /v1/screenshot, /v1/pdf",
226
- "Sessions persist cookies across page navigations",
227
- "Playwright/Puppeteer/Selenium can connect via CDP to session"
228
- ]
229
- },
230
- {
231
- "url": "https://github.com/steel-dev/steel-browser/blob/main/README.md",
232
- "title": "Steel Browser REST API Reference",
233
- "qualityScore": 86,
234
- "scores": { "authority": 7, "recency": 10, "depth": 9, "examples": 10, "uniqueness": 9 },
235
- "keyInsights": [
236
- "Base URL: http://localhost:3000",
237
- "POST /v1/scrape {url, delay?} - returns HTML/markdown",
238
- "POST /v1/screenshot {url, fullPage?} - returns PNG",
239
- "POST /v1/pdf {url} - returns PDF",
240
- "POST /v1/sessions {blockAds?, proxyUrl?, dimensions?, isSelenium?} - returns sessionId",
241
- "Connect Playwright: chromium.connectOverCDP('ws://localhost:3000?sessionId=...')"
242
- ]
243
- },
244
- {
245
- "url": "https://github.com/mendableai/firecrawl",
246
- "title": "Firecrawl - Web Data API",
247
- "qualityScore": 78,
248
- "scores": { "authority": 7, "recency": 10, "depth": 7, "examples": 7, "uniqueness": 7 },
249
- "keyInsights": [
250
- "REST API: /v2/scrape, /v2/search, /v2/agent, /v2/crawl, /v2/map",
251
- "actions feature enables login flows: write+click sequences before scraping",
252
- "Converts pages to markdown/HTML/JSON/screenshots",
253
- "Handles JavaScript rendering and dynamic content"
254
- ]
255
- },
256
- {
257
- "url": "https://github.com/yt-dlp/yt-dlp/blob/master/yt_dlp/cookies.py",
258
- "title": "yt-dlp cookies.py - Netscape Format Implementation",
259
- "qualityScore": 90,
260
- "scores": { "authority": 9, "recency": 10, "depth": 9, "examples": 8, "uniqueness": 8 },
261
- "keyInsights": [
262
- "Netscape cookie file: 7 tab-separated fields: domain, include_subdomains, path, https_only, expires_at, name, value",
263
- "File header must be: # Netscape HTTP Cookie File",
264
- "include_subdomains and https_only are TRUE/FALSE strings",
265
- "expires_at is Unix epoch integer; 0 = session cookie",
266
- "#HttpOnly_ prefix indicates HttpOnly cookies",
267
- "CRLF line endings for Windows, LF for Unix"
268
- ]
269
- },
270
- {
271
- "url": "https://github.com/yt-dlp/yt-dlp/wiki/FAQ#how-do-i-pass-cookies-to-yt-dlp",
272
- "title": "yt-dlp Cookie Handling FAQ",
273
- "qualityScore": 88,
274
- "scores": { "authority": 9, "recency": 9, "depth": 8, "examples": 8, "uniqueness": 7 },
275
- "keyInsights": [
276
- "--cookies-from-browser chrome|firefox|edge extracts live browser cookies",
277
- "--cookies /path/to/file.txt loads Netscape format cookie file",
278
- "--cookies-from-browser chrome --cookies cookies.txt exports to file",
279
- "Chrome extension: 'Get cookies.txt LOCALLY' for manual export",
280
- "Bad line endings cause HTTP 400 errors"
281
- ]
282
- },
283
- {
284
- "url": "https://github.com/go-rod/rod",
285
- "title": "Rod - Go CDP Browser Automation",
286
- "qualityScore": 72,
287
- "scores": { "authority": 7, "recency": 8, "depth": 7, "examples": 6, "uniqueness": 7 },
288
- "keyInsights": [
289
- "Go library for Chrome automation via CDP",
290
- "Auto-waiting, thread-safe, 100% test coverage",
291
- "Provides WaitStable, WaitRequestIdle, HijackRequests, WaitDownload helpers",
292
- "No standalone CLI - library only",
293
- "6.7K GitHub stars"
294
- ]
295
- },
296
- {
297
- "url": "https://github.com/chromedp/chromedp",
298
- "title": "chromedp - Go CDP Library",
299
- "qualityScore": 70,
300
- "scores": { "authority": 7, "recency": 7, "depth": 7, "examples": 6, "uniqueness": 6 },
301
- "keyInsights": [
302
- "Go CDP wrapper with no external dependencies",
303
- "Ecosystem: headless-shell Docker image, cdproto bindings, chromedp-proxy for CDP logging",
304
- "Library only, no CLI",
305
- "Suitable for Go-based agent services"
306
- ]
307
- },
308
- {
309
- "url": "https://github.com/playwright-community/playwright-go",
310
- "title": "playwright-go - Go Playwright Bindings",
311
- "qualityScore": 68,
312
- "scores": { "authority": 6, "recency": 8, "depth": 7, "examples": 6, "uniqueness": 6 },
313
- "keyInsights": [
314
- "Go bindings for Playwright via RPC bridge to bundled Node.js runtime",
315
- "~50MB overhead due to Node.js + Playwright driver",
316
- "CLI: go run .../playwright install --with-deps",
317
- "Full Playwright API parity including storageState"
318
- ]
319
- },
320
- {
321
- "url": "https://github.com/puppeteer/puppeteer",
322
- "title": "Puppeteer GitHub Repository",
323
- "qualityScore": 80,
324
- "scores": { "authority": 9, "recency": 9, "depth": 6, "examples": 6, "uniqueness": 4 },
325
- "keyInsights": [
326
- "JavaScript library for Chrome/Firefox control via CDP/WebDriver BiDi",
327
- "No standalone CLI - library only",
328
- "Headless by default, headed with headless: false",
329
- "puppeteer-core variant without bundled browser",
330
- "Now supports Firefox in addition to Chrome"
331
- ]
332
- },
333
- {
334
- "url": "https://github.com/berstend/puppeteer-extra",
335
- "title": "puppeteer-extra - Plugin System",
336
- "qualityScore": 76,
337
- "scores": { "authority": 7, "recency": 6, "depth": 7, "examples": 7, "uniqueness": 8 },
338
- "keyInsights": [
339
- "Plugin system wrapper for Puppeteer",
340
- "Key plugin: puppeteer-extra-plugin-stealth patches ~20 bot detection signals",
341
- "No standalone CLI",
342
- "puppeteer.use(StealthPlugin()) usage pattern",
343
- "Main value: avoiding bot detection, not simplifying agent usage"
344
- ]
345
- },
346
- {
347
- "url": "https://github.com/sindresorhus/open-cli",
348
- "title": "open-cli - Cross-Platform URL Opener",
349
- "qualityScore": 60,
350
- "scores": { "authority": 7, "recency": 8, "depth": 4, "examples": 5, "uniqueness": 4 },
351
- "keyInsights": [
352
- "open-cli <url|file> [--wait] [--background] [-- <app> [args]]",
353
- "Can open URL in specific browser: open-cli https://... -- 'google chrome' --incognito",
354
- "Not a browser automation framework - just delegates to system app handler",
355
- "Useful for triggering user-visible browser window from agent shell scripts"
356
- ]
357
- },
358
- {
359
- "url": "https://github.com/nickvdyck/webbrowser-rs",
360
- "title": "webbrowser-rs (attempted - 404)",
361
- "qualityScore": 0,
362
- "scores": { "authority": 0, "recency": 0, "depth": 0, "examples": 0, "uniqueness": 0 },
363
- "keyInsights": ["Repository does not exist - 404 on all attempts"]
364
- },
365
- {
366
- "url": "https://github.com/browserless/browserless",
367
- "title": "Browserless WebSocket Automation",
368
- "qualityScore": 83,
369
- "scores": { "authority": 8, "recency": 9, "depth": 8, "examples": 7, "uniqueness": 7 },
370
- "keyInsights": [
371
- "Puppeteer connection: puppeteer.connect({browserWSEndpoint: 'ws://localhost:3000'})",
372
- "Playwright connection: pw.firefox.connect('ws://localhost:3000/firefox/playwright')",
373
- "SSPL-1.0 license - commercial use requires paid license",
374
- "Parallel session management, crash recovery, ARM64 support"
375
- ]
376
- },
377
- {
378
- "url": "https://github.com/microsoft/playwright-mcp/blob/main/README.md",
379
- "title": "Playwright MCP - CDP Connection and Extension",
380
- "qualityScore": 94,
381
- "scores": { "authority": 10, "recency": 10, "depth": 9, "examples": 8, "uniqueness": 8 },
382
- "keyInsights": [
383
- "--cdp-endpoint <url>: connect to existing Chrome instance",
384
- "--cdp-header <headers>: custom headers for CDP connection",
385
- "--cdp-timeout <ms>: connection timeout (default 30000)",
386
- "--extension flag: use Playwright MCP Bridge Chrome extension",
387
- "Extension connects to existing logged-in tabs in Chrome/Edge",
388
- "Persistent profile stored in ~/.cache/ms-playwright/mcp-{channel}-profile on Linux"
389
- ]
390
- },
391
- {
392
- "url": "https://chromedevtools.github.io/devtools-protocol/",
393
- "title": "Chrome DevTools Protocol Specification",
394
- "qualityScore": 88,
395
- "scores": { "authority": 10, "recency": 9, "depth": 8, "examples": 6, "uniqueness": 6 },
396
- "keyInsights": [
397
- "HTTP endpoints at localhost:9222: /json/list, /json/new, /json/close, /json/version",
398
- "WebSocket per-target for CDP commands",
399
- "Key domains: Network (cookies, requests), Page (navigate, load), Runtime (JS eval), Target (tab management)",
400
- "Network.getAllCookies() returns all browser cookies",
401
- "Network.setCookies([...]) injects cookies"
402
- ]
403
- },
404
- {
405
- "url": "https://github.com/mendableai/firecrawl",
406
- "title": "Firecrawl Auth Flow Actions",
407
- "qualityScore": 76,
408
- "scores": { "authority": 7, "recency": 10, "depth": 7, "examples": 7, "uniqueness": 7 },
409
- "keyInsights": [
410
- "actions[] array in scrape request: {type: write/click/wait/screenshot}",
411
- "Can automate login before scrape in same request",
412
- "Handles CAPTCHA-protected and JS-rendered pages"
413
- ]
414
- },
415
- {
416
- "url": "https://github.com/nickvdyck/webbrowser-rs",
417
- "title": "browser-use CLI session state model",
418
- "qualityScore": 85,
419
- "scores": { "authority": 8, "recency": 10, "depth": 8, "examples": 9, "uniqueness": 8 },
420
- "keyInsights": [
421
- "browser-use state command returns indexed element list for LLM",
422
- "Session persists between CLI commands within same terminal session",
423
- "Profile sync: curl -fsSL https://browser-use.com/profile.sh | BROWSER_USE_API_KEY=XXXX sh",
424
- "AgentMail for disposable email inboxes during agent workflows"
425
- ]
426
- }
427
- ]
428
- }
@@ -1,239 +0,0 @@
1
- {
2
- "topic": "GitHub organization project management for multi-repo open source ecosystems",
3
- "slug": "github-org-project-management",
4
- "generated": "2026-02-21T00:00:00Z",
5
- "depth": "deep",
6
- "totalSources": 15,
7
- "sources": [
8
- {
9
- "url": "https://docs.github.com/en/issues/planning-and-tracking-with-projects",
10
- "title": "About Projects - GitHub Docs",
11
- "qualityScore": 97,
12
- "authority": 30,
13
- "recency": 20,
14
- "depth": 19,
15
- "examples": 18,
16
- "uniqueness": 10,
17
- "keyInsights": [
18
- "Projects v2 supports Table, Board, and Roadmap views",
19
- "Up to 50 custom fields per project (date, number, single-select, text, iteration)",
20
- "50,000 item capacity; cross-repo at org level",
21
- "Built-in workflow automations with plan-based limits (1/5/20)"
22
- ]
23
- },
24
- {
25
- "url": "https://docs.github.com/en/issues/planning-and-tracking-with-projects/automating-your-project/using-the-api-to-manage-projects",
26
- "title": "Using the API to manage Projects - GitHub Docs",
27
- "qualityScore": 94,
28
- "authority": 30,
29
- "recency": 20,
30
- "depth": 18,
31
- "examples": 18,
32
- "uniqueness": 8,
33
- "keyInsights": [
34
- "read:project scope for read-only, project scope for mutations",
35
- "addProjectV2ItemById, updateProjectV2ItemFieldValue, createProjectV2 are primary mutations",
36
- "Webhooks: projects_v2_item events (created, edited, deleted, reordered, converted)"
37
- ]
38
- },
39
- {
40
- "url": "https://github.com/actions/add-to-project",
41
- "title": "actions/add-to-project - GitHub",
42
- "qualityScore": 90,
43
- "authority": 28,
44
- "recency": 18,
45
- "depth": 16,
46
- "examples": 20,
47
- "uniqueness": 8,
48
- "keyInsights": [
49
- "Official GitHub Action for cross-repo auto-add to org projects",
50
- "Supports filtering by label before adding",
51
- "Requires PAT with project scope from an org member"
52
- ]
53
- },
54
- {
55
- "url": "https://github.blog/changelog/2025-01-issue-types-public-preview/",
56
- "title": "Issue Types in public preview - GitHub Changelog",
57
- "qualityScore": 88,
58
- "authority": 28,
59
- "recency": 20,
60
- "depth": 14,
61
- "examples": 14,
62
- "uniqueness": 12,
63
- "keyInsights": [
64
- "Up to 25 custom issue types per org",
65
- "Default types: Task, Bug, Feature",
66
- "Available across all repos; filterable in Projects and search",
67
- "Launched public preview January 2025"
68
- ]
69
- },
70
- {
71
- "url": "https://docs.github.com/en/issues/tracking-your-work-with-issues/using-issues/adding-sub-issues",
72
- "title": "Sub-Issues - GitHub Docs",
73
- "qualityScore": 85,
74
- "authority": 30,
75
- "recency": 18,
76
- "depth": 14,
77
- "examples": 13,
78
- "uniqueness": 10,
79
- "keyInsights": [
80
- "Parent-child issue hierarchy",
81
- "Progress bar shown on parent",
82
- "Cross-repo sub-issues supported",
83
- "Currently in public preview"
84
- ]
85
- },
86
- {
87
- "url": "https://github.com/orgs/github/projects/4247",
88
- "title": "GitHub Public Roadmap",
89
- "qualityScore": 88,
90
- "authority": 26,
91
- "recency": 20,
92
- "depth": 14,
93
- "examples": 18,
94
- "uniqueness": 10,
95
- "keyInsights": [
96
- "Quarterly columns as milestones",
97
- "shipped label applied with changelog link when feature lands",
98
- "Items remain visible post-shipping in Shipped column",
99
- "Model for public open source roadmaps"
100
- ]
101
- },
102
- {
103
- "url": "https://github.com/kubernetes/community/blob/master/sig-list.md",
104
- "title": "Kubernetes SIG List",
105
- "qualityScore": 82,
106
- "authority": 24,
107
- "recency": 16,
108
- "depth": 16,
109
- "examples": 16,
110
- "uniqueness": 10,
111
- "keyInsights": [
112
- "Special Interest Groups own subsets of repos",
113
- "Standardized labels: sig/*, kind/*, priority/*",
114
- "Weekly triage meetings per SIG",
115
- "Scales to 100+ repos without central bottleneck"
116
- ]
117
- },
118
- {
119
- "url": "https://github.com/kubernetes/enhancements",
120
- "title": "kubernetes/enhancements repo",
121
- "qualityScore": 80,
122
- "authority": 24,
123
- "recency": 16,
124
- "depth": 16,
125
- "examples": 14,
126
- "uniqueness": 10,
127
- "keyInsights": [
128
- "Kubernetes Enhancement Proposals (KEPs) as structured markdown",
129
- "Single repo aggregates work tracked across many implementation repos",
130
- "Lifecycle stages tracked as project fields"
131
- ]
132
- },
133
- {
134
- "url": "https://github.com/rust-lang/rfcs",
135
- "title": "rust-lang/rfcs",
136
- "qualityScore": 78,
137
- "authority": 22,
138
- "recency": 14,
139
- "depth": 16,
140
- "examples": 16,
141
- "uniqueness": 10,
142
- "keyInsights": [
143
- "RFCs as PRs enable community review via GitHub comments",
144
- "Working groups coordinate cross-team implementation",
145
- "Project tracks RFC lifecycle: proposed, accepted, stabilized, closed"
146
- ]
147
- },
148
- {
149
- "url": "https://github.com/withastro/roadmap",
150
- "title": "withastro/roadmap",
151
- "qualityScore": 80,
152
- "authority": 20,
153
- "recency": 18,
154
- "depth": 16,
155
- "examples": 16,
156
- "uniqueness": 10,
157
- "keyInsights": [
158
- "51 repos under withastro org coordinated via roadmap project",
159
- "RFC discussions in roadmap repo, implementation in satellite repos",
160
- "GitHub Actions auto-add from satellite repos to roadmap project"
161
- ]
162
- },
163
- {
164
- "url": "https://docs.github.com/en/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions",
165
- "title": "Automating projects using Actions - GitHub Docs",
166
- "qualityScore": 86,
167
- "authority": 30,
168
- "recency": 18,
169
- "depth": 16,
170
- "examples": 14,
171
- "uniqueness": 8,
172
- "keyInsights": [
173
- "GitHub Actions can react to project webhooks and issue events",
174
- "Cross-repo workflows require a PAT, not GITHUB_TOKEN",
175
- "actions/github-script useful for GraphQL mutations in Actions"
176
- ]
177
- },
178
- {
179
- "url": "https://docs.github.com/en/issues/planning-and-tracking-with-projects/managing-your-project/managing-access-to-your-projects",
180
- "title": "Managing access to Projects - GitHub Docs",
181
- "qualityScore": 78,
182
- "authority": 30,
183
- "recency": 16,
184
- "depth": 12,
185
- "examples": 10,
186
- "uniqueness": 10,
187
- "keyInsights": [
188
- "Projects can be public or private at org level",
189
- "Team-level write access configurable",
190
- "Useful for contributor-facing roadmaps vs internal planning"
191
- ]
192
- },
193
- {
194
- "url": "https://github.com/EndBug/label-sync",
195
- "title": "EndBug/label-sync Action",
196
- "qualityScore": 72,
197
- "authority": 16,
198
- "recency": 16,
199
- "depth": 14,
200
- "examples": 16,
201
- "uniqueness": 10,
202
- "keyInsights": [
203
- "Sync label definitions from YAML config to all org repos",
204
- "Prevents label drift across repos",
205
- "Configurable delete behavior"
206
- ]
207
- },
208
- {
209
- "url": "https://docs.github.com/en/issues/planning-and-tracking-with-projects/understanding-fields/about-iteration-fields",
210
- "title": "About Iteration Fields - GitHub Docs",
211
- "qualityScore": 80,
212
- "authority": 30,
213
- "recency": 16,
214
- "depth": 14,
215
- "examples": 10,
216
- "uniqueness": 10,
217
- "keyInsights": [
218
- "Iteration fields define time-boxed periods (sprints or releases)",
219
- "Configurable duration and start date",
220
- "Useful for burndown tracking across repos"
221
- ]
222
- },
223
- {
224
- "url": "https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests",
225
- "title": "Searching Issues and Pull Requests - GitHub Docs",
226
- "qualityScore": 75,
227
- "authority": 30,
228
- "recency": 14,
229
- "depth": 12,
230
- "examples": 12,
231
- "uniqueness": 7,
232
- "keyInsights": [
233
- "AND/OR keywords and parentheses for nested searches",
234
- "type: qualifier for issue types",
235
- "org: qualifier to search across all org repos at once"
236
- ]
237
- }
238
- ]
239
- }