adk-framework-adapters

adk-framework-adapters is a skill for Claude Code, Codex from hashgraph-online/awesome-codex-plugins. It costs 82 tokens per session (785 once invoked), scanned A, original, Apache-2.0.

A set of reference adapters for generating AI-agent code in LangChain, EINO, AutoGen, AgentScope, and CrewAI. It provides framework-specific templates, common patterns, API mappings, and project structures, with version dates for the references.

In plain words
What is it for?
Use it when generating agent code for one of the supported frameworks or comparing how those frameworks implement similar features.
Why use it?
It reduces the need to remember how each agent framework names its APIs and structures its projects, while flagging references that may be out of date.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when generating agent code for one of the supported frameworks or comparing how those frameworks implement similar features.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hashgraph-online/awesome-codex-plugins/adk-framework-adapters
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hashgraph-online/awesome-codex-plugins --skill adk-framework-adapters
Clone the repo
git clone --depth 1 https://github.com/hashgraph-online/awesome-codex-plugins

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for adk-framework-adapters

README.md
[![agentmods](https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/adk-framework-adapters.svg)](https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/adk-framework-adapters)
Your own site
<a href="https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/adk-framework-adapters"><img src="https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/adk-framework-adapters.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 785 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.00785
Opus 5 $0.00041 $0.00392
Sonnet 5 $0.00016 $0.00157
Haiku 4.5 $0.00008 $0.00078

Measured 3d ago against content hash 909eaeed38d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

adk-framework-adapters scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/Colin4k1024/tsp/skills/adk-framework-adapters/SKILL.md · 77 lines

What it actually says

ADK Framework Adapters

为 AI Agent 代码生成提供框架特定的适配层。

何时激活

  • agent-dev-workshop Phase 5 自动调用
  • 用户需要特定框架的 Agent 代码模板
  • 需要对比不同框架的 API 差异时

支持的框架

框架 语言 维护方 Reference 版本锁定
LangChain / LangGraph Python, TypeScript LangChain Inc. references/langchain.md
EINO Go ByteDance references/eino.md
AutoGen Python Microsoft references/autogen.md
AgentScope Python Alibaba references/agentscope.md
CrewAI Python CrewAI Inc. references/crewai.md

版本锁定机制

每个 reference 文件头部包含:

framework: langchain
version: "0.3.x"
verified_date: "2025-01-15"

使用规则:

  • verified_date 距今 ≤ 90 天 → 正常使用
  • verified_date 距今 > 90 天 → 生成代码前提醒用户检查 API 变化
  • /harness-audit 会检查所有 reference 文件的 staleness

框架能力对照表

能力 LangChain EINO AutoGen AgentScope CrewAI
ReAct Agent ✅ AgentExecutor ✅ ReactAgent ✅ AssistantAgent ✅ ReActAgent ✅ Agent
Multi-Agent ✅ LangGraph ⚠️ 自定义 ✅ GroupChat ✅ Pipeline ✅ Crew
RAG Pipeline ✅ Retriever chain ✅ flow chain ⚠️ 需集成 ✅ Knowledge module ✅ Knowledge
Tool Definition ✅ @tool decorator ✅ ToolsNode ✅ Function ✅ ServiceToolkit ✅ @tool
Memory ✅ 内置多种 ✅ ChatTemplate ✅ 内置 ✅ Memory module ✅ 内置
Streaming ⚠️ 有限
Async ✅ (goroutine) ⚠️ 有限

图例:✅ 原生支持 / ⚠️ 部分支持或需额外集成

使用方式

# 在 agent-dev-workshop Phase 5 中
1. 确认目标框架
2. 读取 references/{framework}.md
3. 检查 verified_date
4. 使用 reference 中的 code templates 生成项目
5. 根据 agent-spec 和 architecture 填充模板变量

新增框架

新增框架适配器时:

  1. references/ 下创建 {framework}.md
  2. 包含 frontmatter(framework, version, verified_date)
  3. 至少覆盖:项目模板、Agent 创建、Tool 定义、Memory 配置、运行入口
  4. 更新本文件的框架表
Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 77 lines · 82 tokens per session scan A 909eaeed38d4

Subscribe to this mod's changes

adk-framework-adapters is a skill published in the GitHub repository hashgraph-online/awesome-codex-plugins (956 stars, last pushed today), licensed Apache-2.0. It adds 82 tokens to every session and 785 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

search

Search 2500+ curated ChatGPT and LLM open-source repositories. Use when the user asks to find tools, libraries, or repos related to ChatGPT, LLMs, RAG, agents, langchain, NLP, AI development, or any open-source AI tooling.

taishi-i/awesome-ChatGPT-repositories · 57 tokens

sprr

Single PR reviewer for awesome-quant. Use when the user asks to review, validate, comment on, label, close, or merge one specific pull request that adds README.md entries. Triggers include "sprr", "review PR", "check PR", and "validate contribution".

wilsonfreitas/awesome-quant · 60 tokens

bprr

Bulk PR reviewer for awesome-quant. Use when the user asks to review all open PRs, review unreviewed PRs, bulk review, or mentions "bprr". Reviews open PRs lacking the reviewed label and presents a summary before any merge/comment/label action.

wilsonfreitas/awesome-quant · 61 tokens

drawio-reconstruction

Reconstructs reference images into high-fidelity, editable Draw.io files with rendered previews: native Draw.io elements carry text and structure, SVG covers simple icons that match the reference, and cropped or transparent PNGs preserve complex visuals. Use when the user wants a diagram image, research figure…

HKUSTDial/Supervisor-Skills · 102 tokens

benchmark-paper-template

Structures Benchmark and Evaluation papers using the five-pillar framework (Research Gap, Construction Pipeline, Evaluation Framework, Empirical Findings, optional Companion Method). Returns a completeness audit, a six-part Introduction logic chain, a Section 2-7 skeleton, and a pre-submission checklist. Use when…

HKUSTDial/Supervisor-Skills · 96 tokens

reverse-engineering-android-malware-with-jadx

Reverse engineers malicious Android APK files using JADX decompiler to analyze Java/Kotlin source code, identify malicious functionality including data theft, C2 communication, privilege escalation, and overlay attacks. Examines manifest permissions, receivers, services, and native libraries. Activates for requests…

adriannoes/awesome-agentic-ai · 82 tokens