소스 정보
- 저장소
- jiayaoqijia/cryptoskill
- 최근 소스 활동
- 2026년 5월 19일 16:50
- 감지된 SKILL.md 언어
- 영어
- 스타
- 72
- 포크
- 16
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jiayaoqijia/cryptoskill --skill hedera-official-agent-kit-js명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | hedera-official-agent-kit-js |
| description | Build Hedera-powered AI agents **in under a minute**. |
Source: github.com/hashgraph/hedera-agent-kit-js. The body below is the upstream README.md captured at the time of registration.
Build Hedera-powered AI agents in under a minute.
Upgrading from v3? See the v3 → v4 Migration Guide for all breaking changes.
The Hedera Agent Kit is an open-source toolkit that brings intelligent agent workflows to the Hedera network. It’s designed for developers who want to integrate Hedera account management and Hedera native functionality into agent applications. With the Hedera Agent Kit, developers can build agents that interact on-chain through a conversational interface. This means Hedera agents can do more than process information; they can also send tokens, manage accounts, store data on Hedera Consensus Service, and coordinate workflows directly on a public ledger.
As of v4, the Hedera Agent Kit is organized as a monorepo of @hashgraph-scoped packages. You install the core package plus only the toolkit for your framework (LangChain, Vercel AI SDK, ElizaOS, or MCP). See the v3 → v4 Migration Guide for details.
The Hedera Agent Kit is extensible with third party plugins by other projects.
The list of currently available Hedera plugins and functionality can be found in the Plugins & Tools section of this page
👉 See docs/HEDERAPLUGINS.md for the full catalogue & usage examples for Hedera Tools.
Want to add more functionality from Hedera Services? Open an issue!
The Hedera Agent Kit is extensible with third party plugins by other projects. See how you can build and submit your own plugin to listed as a Hedera Agent Kit plugin in Hedera Docs and README in docs/PLUGINS.md
Memejob Plugin provides a streamlined interface to the memejob protocol, exposing the core actions (create, buy, sell) for interacting with meme tokens on Hedera:
Github repository: https://github.com/buidler-labs/hak-memejob-plugin
Bonzo Plugin is a unified SDK to the Bonzo protocol, exposing the core actions (deposit, withdraw, repay, borrow) for decentralised lending and borrowing on Hedera:
Github repository: https://github.com/Bonzo-Labs/bonzoPlugin
SaucerSwap Plugin provides a streamlined interface to the SaucerSwap DEX, exposing the core actions (saucerswap_get_swap_quote, saucerswap_swap_tokens, saucerswap_get_pools, saucerswap_add_liquidity, saucerswap_remove_liquidity, saucerswap_get_farms) for swaps, liquidity, and farming insights:
NPM: https://www.npmjs.com/package/hak-saucerswap-plugin Source: https://github.com/jmgomezl/hak-saucerswap-plugin Tested/endorsed version: hak-saucerswap-plugin@1.0.1
Pyth Plugin provides access to the Pyth Network price feeds via the Hermes API, exposing tools to list feeds and fetch latest prices:
Github repository: https://github.com/jmgomezl/hak-pyth-plugin. Tested/endorsed version of plugin: hak-pyth-plugin@0.1.1
CoinCap Plugin provides access to the CoinCap API service to access cryptocurrency market data. It exposes the action (get HBAR price in USD) to get the current price of HBAR in USD currency, by using it you can ask your agent to get your current HBAR balance expressed in USD.
The Hedera Agent Kit provides a flexible and powerful system for putting limits on tool usage and enforcing business logic, effectively enabling you to limit the functionality of AI agents through Hooks and Policies. These hooks and policies can be used to enforce security, compliance, and other business rules.
Features
typescript/src/hooks and typescript/src/policies directories.For more information on hooks and policies, see the Hooks and Policies documentation.
Try out an example Audit Hook Agent to see how hooks and policies work in practice.
You can try out examples of the different types of agents you can build by followin the instructions in the Developer Examples doc in this repo.
First follow instructions in the Developer Examples to clone and configure the example, then choose from one of the examples to run:
See more info at https://www.npmjs.com/package/@hashgraph/hedera-agent-kit
Create a directory for your project and install dependencies:
mkdir hello-hedera-agent-kit
cd hello-hedera-agent-kit
Init and install with npm
npm init -y
Open package.json and add "type": "module" to enable ES modules.
Install the core package, LangChain toolkit, your LLM provider, and the Hedera SDK:
npm install @hiero-ledger/sdk @hashgraph/hedera-agent-kit @hashgraph/hedera-agent-kit-langchain @langchain/openai dotenv
Using a different LLM? Replace
@langchain/openaiwith@langchain/anthropic,@langchain/groq, or@langchain/ollama.
Create an .env file in the root directory of your project:
touch .env
If you already have a testnet account, you can use it. Otherwise, you can create a new one at https://portal.hedera.com/dashboard
Add the following to the .env file:
# Required: Hedera credentials (get free testnet account at https://portal.hedera.com/dashboard)
ACCOUNT_ID="0.0.xxxxx"
PRIVATE_KEY="0x..." # ECDSA encoded private key
# Optional: Add the API key for your chosen AI provider
OPENAI_API_KEY="sk-proj-..." # For OpenAI (https://platform.openai.com/api-keys)
ANTHROPIC_API_KEY="sk-ant-..." # For Claude (https://console.anthropic.com)
GROQ_API_KEY="gsk_..." # For Groq free tier (https://console.groq.com/keys)
# Ollama doesn't need an API key (runs locally)
Create a new file called index.ts in the hello-hedera-agent-kit folder.
touch index.ts
Once you have created the file and added the environment variables, you can run the following code:
// index.ts
import { Client, PrivateKey } from '@hiero-ledger/sdk';
import { AgentMode } from '@hashgraph/hedera-agent-kit';
import { allCorePlugins } from '@hashgraph/hedera-agent-kit/plugins';
import { HederaLangchainToolkit } from '@hashgraph/hedera-agent-kit-langchain';
import { ChatOpenAI } from '@langchain/openai';
import { createAgent } from 'langchain';
import * as dotenv from 'dotenv';
dotenv.config();
async function main() {
// Hedera client setup (Testnet by default)
const client = Client.forTestnet().setOperator(
process.env.ACCOUNT_ID!,
PrivateKey.fromStringECDSA(process.env.PRIVATE_KEY!)
);
// Prepare Hedera toolkit with explicit plugin selection
const toolkit = new HederaLangchainToolkit({
client,
configuration: {
: allCorePlugins,
: { : . },
},
});
agent = ({
: ({ : }),
: toolkit.(),
: ,
});
response = agent.({
: [{ : , : }],
});
lastMessage = response.[response.. - ];
.(lastMessage.);
}
().(.);
From the root directory, run your example agent:
npx tsx index.ts
To see more examples, check out the examples/ directory in this repo.
This tool has two execution modes with AI agents; autonomous execution and return bytes. If you set:
mode: AgentMode.RETURN_BYTE the transaction will be executed, and the bytes to execute the Hedera transaction will be returned.mode: AgentMode.AUTONOMOUS the transaction will be executed autonomously, using the accountID set (the operator account can be set in the client with .setOperator(process.env.ACCOUNT_ID!)The Hedera Agent Kit provides a set of tools, bundled into plugins, to interact with the Hedera network. See how to build your own plugins in docs/HEDERAPLUGINS.md
Currently, the following plugins are available:
See more in docs/PLUGINS.md
You can find a guide for creating plugins in docs/PLUGINS.md
This guide also has instructions for publishing and registering your plugin to help our community find and use it.
If you would like to contribute and suggest improvements for the cord SDK and MCP server, see CONTRIBUTING.md for details on how to contribute to the Hedera Agent Kit.
Apache 2.0
Special thanks to the developers of the Stripe Agent Toolkit who provided the inspiration for the architecture and patterns used in this project.
Github repository: https://github.com/henrytongv/coincap-hedera-plugin. Tested/endorsed version of plugin: coincap-hedera-plugin@1.0.4
Chainlink price feed Plugin provides access to the Chainlink price feeds to get data aggregated from many data sources. It exposes the action (get price feed) that allows you to get the current price for ETH, BTC, HBAR, LINK, USDC, UST or DAI.
Github repository: https://github.com/henrytongv/chainlink-price-plugin-js. Tested/endorsed version of plugin: chainlink-pricefeed-plugin@1.0.4
Hedera T3N Plugin provides access to Terminal 3 Network (T3N) to enable identity verification, authentication, and last mile-delivery or selective disclosure of private and sensitive information for AI-driven applications, ensuring compliant and auditable interactions.
Github repository: https://github.com/Terminal-3/hedera-t3n-plugin
SOC 직업 분류 기준