Skip to main content
This list covers official documentation entry points, cross-tool standards, community discovery resources, security scanning tools, and researcher workflow tools. For the evaluation framework see 03-1, 03-2, and 03-3. Apply those three sections’ scanning SOP before installing any third-party resource.
Links and content verified as of 2026-06; treat each vendor’s official page as the authoritative source. Any entry marked “needs source verification” should be confirmed before use. Community resources change at any time; appearing here means only “was included,” not “worth installing.”

1. Official documentation (by tool)

Vendor / ToolEntry pointPurpose
Anthropic Claude Codecode.claude.com/docsOfficial Claude Code documentation hub; primary source for all CLI settings, hooks, skills, subagents, plugins, and MCP chapters
Anthropic account / privacysupport.claude.com, privacy.claude.comAccount settings, Help Improve Claude toggle, retention periods, Team / Enterprise terms
Anthropic Coworkanthropic.com/product/claude-coworkCowork product page; specific connector configuration mechanisms require the official support docs
Anthropic Engineeringanthropic.com/engineeringEngineering team blog; conceptual articles on context engineering, augmented LLM, etc.
OpenAI ChatGPThelp.openai.comChatGPT consumer settings, Custom Instructions, Memory, and Projects
OpenAI Codexdevelopers.openai.com/codexCodex CLI / IDE settings, config.toml, AGENTS.md, hooks (experimental)
OpenAI policiesopenai.com/policiesData use, privacy, API terms of service
Google Geminisupport.google.com/geminiGemini consumer Gems, Personal context, Keep Activity toggle
Google Antigravitydevelopers.googleblog.com, ai.google.dev, Google CodelabsAntigravity and Gemini API developer documentation (some mechanisms require re-checking against your installed version’s official page)
Google AI developer docsai.google.devGemini API specification, model cards, pricing
GitHub Copilotdocs.github.com/copilotCopilot documentation hub for all surfaces (CLI, IDE, Chat, coding agent)
VS Code Copilotcode.visualstudio.com/docs/copilotCopilot Chat inside VS Code and IDE settings such as chat.instructionsFilesLocations
Cursorcursor.com/docsCursor rules, ignore files, MCP, Composer
Linux Foundation AAIFlinuxfoundation.orgAgentic AI Foundation; governance for MCP, goose, and AGENTS.md founding projects
When a vendor ships a new version, the changelog and release notes are the first-hand source for configuration file renames and mechanism changes. They are more accurate and faster than any secondary summary.

2. Cross-tool standards

  • AGENTS.md specification site: agents.md. The open rules-file standard across tools; governed by the Agentic AI Foundation (AAIF) under the Linux Foundation.
  • MCP (Model Context Protocol) specification site: modelcontextprotocol.io. MCP specification, definitions of the three interface types (tools / resources / prompts), and transport evolution.
  • Claude official MCP server directory: claude.ai/directory. Anthropic’s curated list of official MCP servers.
  • Snyk Security advisories: snyk.io and security.snyk.io. ToxicSkills reports, CVEs, and third-party component risk research.
  • GitHub Security Advisories: github.com/advisories. Query CVEs and vulnerability advisories by package, tool, or keyword; subscribe to the tools and libraries you depend on most.
AGENTS.md is the baseline (shared rules); vendor-specific files (CLAUDE.md / GEMINI.md / .cursor/rules/*.mdc / .github/copilot-instructions.md) override or extend it. Claude Code does not natively read AGENTS.md; use @AGENTS.md inside CLAUDE.md to import it.

3. Community discovery hubs (not endorsements)

Inclusion criteria are “actively maintained, has users, not a shell.” Quality, maintenance recency, permission scope, and security must be assessed with the frameworks in 03-1, 03-2, and 03-3.

3.1 Rules / Skill / Agent resources

ResourcePrimary contentEntry point
PatrickJS/awesome-cursorrulesCommunity collection of Cursor .mdc rulesgithub.com/PatrickJS/awesome-cursorrules
VoltAgent/awesome-agent-skillsCross-tool skill collection (mostly Claude / Cursor)github.com/VoltAgent/awesome-agent-skills
kodustech/awesome-agent-skillsAnother cross-tool skill collectiongithub.com/kodustech/awesome-agent-skills
addyosmani/agent-skillsEngineering-oriented skill templatesgithub.com/addyosmani/agent-skills
Claude Code awesome listsCommunity-curated plugin / skill / hook collectionsSearch awesome claude-code on github.com

3.2 Package marketplaces

MarketplaceContentEntry point
VS Code Marketplace (Copilot extensions)Copilot extensions, language toolsmarketplace.visualstudio.com
npm @github/copilotStandalone copilot CLInpmjs.com/package/@github/copilot
PyPI (Python packages)Agent / SDK packages, evaluation frameworkspypi.org
crates.io (Rust packages)Agent / toolchain cratescrates.io

3.3 Evaluation and benchmarks

ResourcePurpose
Vendor evaluation pages (Anthropic / OpenAI / Google)Official model capability tests; do not rely on these alone — run your own personal benchmark
LMSYS Chatbot ArenaCrowd-voted comparisons; useful for community perception, not a reliable proxy for personal task performance
lmsys/lm-evaluation-harnessOpen-source evaluation framework for building custom task sets
openai/evalsOpenAI’s open-source evaluation framework
Hugging Face HubModel, dataset, and Spaces discovery hub; validate everything yourself

4. Security and supply-chain tools

ToolPurposeEntry point
rg (ripgrep)Scan for hidden Unicode / bidi, suspicious outbound connections, dangerous commandsgithub.com/BurntSushi/ripgrep
SnykPackage vulnerabilities, ToxicSkills reportssnyk.io
TrivyContainer, IaC, and SBOM scanningtrivy.dev
banditPython static security analysispypi.org/project/bandit
SemgrepMulti-language static analysis with custom rules for supply-chain fingerprintingsemgrep.dev
GitHub Advisory DatabaseVulnerability databasegithub.com/advisories
OSV.devCross-ecosystem vulnerability databaseosv.dev
agentshieldSecurity scanning tool for third-party skill / agent descriptor filesgithub.com/affaan-m/agentshield [needs source verification]
Three scans to run on any unfamiliar skill:
# 1. Hidden characters and bidi overrides
rg -nP '[\x{200B}\x{200C}\x{200D}\x{2060}\x{FEFF}\x{202A}-\x{202E}]' ~/.claude/plugins/ .claude/ .mcp.json

# 2. Suspicious outbound connections and dangerous commands
rg -n 'curl|wget|nc|scp|ssh|ANTHROPIC_BASE_URL|enableAllProjectMcpServers' ~/.claude/plugins/ .claude/ .mcp.json

# 3. HTML comments, script tags, base64
rg -n '<!--|<script|data:text/html|base64,' ~/.claude/plugins/ .claude/ .mcp.json
Any hit should not be skipped.

5. Further resources for researchers

5.1 Local inference and deployment

ToolPurposeEntry point
vLLMHigh-throughput LLM serving; well-suited for local serving in research environmentsgithub.com/vllm-project/vllm
llama.cppLocal inference on CPU / Apple Silicon / low-VRAM setupsgithub.com/ggerganov/llama.cpp
SGLangStructured generation, radix attention, inference optimizationgithub.com/sgl-project/sglang
OllamaOut-of-the-box local model managementollama.com
LM StudioGUI local model managerlmstudio.ai
Hugging Face TransformersDe-facto standard library for model loading, inference, and traininghuggingface.co/docs/transformers
Hugging Face HubEntry point for models, datasets, and Spaceshuggingface.co
Open WebUISelf-hosted chat interface compatible with Ollama / OpenAI-compatible APIsgithub.com/open-webui/open-webui
llama-swapDynamic multi-model switching proxygithub.com/mostlygeek/llama-swap
GPU-StackMulti-GPU / multi-node inference orchestrationgithub.com/gpustack/gpustack

5.2 Academic workflow integration

ResourcePurpose
arxiv.orgPreprint server; starting point for SOTA tracking (check peer-reviewed journals for accepted work)
Semantic Scholar, Google ScholarCitation graphs and cited-by counts; “who cited whom” for literature reviews
Connected Papers, Litmaps, ResearchRabbitVisual citation graphs for finding related papers
Zotero (with Better BibTeX)Reference management; integrates with Obsidian / VS Code
Obsidian + Citations / Zotero Integration pluginPull literature metadata into notes
OverleafOnline LaTeX; collaborative editing and template library
Zettlr, ObsidianMarkdown-first long-form writing environments
PandocMarkdown / LaTeX / DOCX conversion; primary tool for producing final manuscripts
LangChain / LlamaIndexRAG and agent frameworks; for retrieval-augmented literature search and automation
OpenReviewPublic conference review records; inspect reviewer comments and rebuttal quality
Papers with CodeLinks papers to implementations / benchmarks; entry point for finding open-source implementations

5.3 Reproducibility tools

ToolPurpose
GitVersion control foundation; commit conventions and .gitignore templates covered throughout this Playbook
uvPython package and environment management (CLI / scripts / web use)
conda / MinicondaScientific computing, ML, and CUDA dependency management
Docker / Docker ComposeReproducible environment packaging; entire agent workflows can be containerized
Devcontainer (VS Code / GitHub Codespaces)Standardized development environments on cloud or local
pytestPython testing framework; pair with pytest-cov to reach 80% coverage
pre-commitGate lint / type-check / format checks before commit
uv run / nix runOne-shot, disposable execution environments

6. Developer environments and platforms

ResourcePurpose
Supabase / pgvectorBackend + vector database; the most common path for self-hosted RAG
MinIOS3-compatible object storage; self-hosted data lake
Cloudflare (Workers, Tunnels, Zero Trust, WARP, WAF, DNS, R2)Edge compute and zero-trust networking; low-cost option for individuals and small teams
TailscaleZero-config mesh VPN; self-hosted cross-machine agent networking
acme.shAutomated TLS certificates; lowest-cost HTTPS for public-facing services
n8nVisual workflow orchestration; API chaining accessible to non-engineers
LangGraphAgent flows as stateful graphs; designed for complex multi-step tasks
Only common self-hosted / platform options are listed here. Selection details depend on your specific deployment requirements (latency, bandwidth, cost, regulatory constraints) and each vendor’s official documentation.

7. Standard SOP for using community resources

When you encounter a popular Skill / Plugin / MCP server, follow these seven steps:
  1. Source review: Is the author named? What organization? How long since the last commit? Is the issue tracker active?
  2. File review: Read SKILL.md / plugin.json / .mcp.json / hooks.json in full. Do the first 50 lines contain suspicious commands or outbound connections?
  3. Permission review: Does it write files? Connect to the network? Require a token? Does the task actually need any of that?
  4. Isolated test: Install it first in a throwaway environment or container, run one empty task, and observe network and file behavior.
  5. Scan: Run the three rg scans from Section 4. Do not skip any hit.
  6. Track: Follow the author’s releases. Re-run all five steps before upgrading.
  7. Document: Write the review findings into MEMORY.md or project documentation. When a colleague asks whether it is safe to install, hand them the record directly.