Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/setup.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bun
import { Command } from 'commander';
import * as fs from 'node:fs';
import packageJson from '../package.json';
import {
LOG,
SERVER_NAME,
Expand All @@ -20,7 +21,7 @@ const program = new Command();
program
.name('aelf-node-setup')
.description('Configure @blockchain-forever/aelf-node-skill for Claude/Cursor/OpenClaw')
.version('0.1.0');
.version(packageJson.version);

const withCommonMcpOptions = (command: Command) =>
command
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blockchain-forever/aelf-node-skill",
"version": "0.1.2",
"version": "0.1.3",
"description": "AElf Node Skill for AI agents: REST for reads, SDK for contract execution, and selective fallback for fee estimate.",
"type": "module",
"main": "index.ts",
Expand Down