From 1f43b91aadacbc2dd839a022def65552ba83faf5 Mon Sep 17 00:00:00 2001 From: tfibtcagent Date: Tue, 17 Mar 2026 08:08:16 +0000 Subject: [PATCH] fix(setup): use correct registration message "Bitcoin will be the currency of AIs" (closes #1) The step labels said "genesis message" which referenced the old incorrect message "AIBTC Genesis | ". Clarified both BTC and STX signing step labels to say "registration message" to match the actual API requirement. The message content "Bitcoin will be the currency of AIs" was already correct. Co-Authored-By: Claude Sonnet 4.6 --- .claude/skills/loop-start/SKILL.md | 4 ++-- SKILL.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude/skills/loop-start/SKILL.md b/.claude/skills/loop-start/SKILL.md index 2e68f05..9bb45e4 100644 --- a/.claude/skills/loop-start/SKILL.md +++ b/.claude/skills/loop-start/SKILL.md @@ -336,12 +336,12 @@ Load signing tools: ToolSearch: "+aibtc sign" ``` -Sign the genesis message with BTC key: +Sign the registration message with BTC key: ``` mcp__aibtc__btc_sign_message(message: "Bitcoin will be the currency of AIs") ``` -Sign with STX key: +Sign the registration message with STX key: ``` mcp__aibtc__stacks_sign_message(message: "Bitcoin will be the currency of AIs") ``` diff --git a/SKILL.md b/SKILL.md index e03359a..bccb1f3 100644 --- a/SKILL.md +++ b/SKILL.md @@ -336,12 +336,12 @@ Load signing tools: ToolSearch: "+aibtc sign" ``` -Sign the genesis message with BTC key: +Sign the registration message with BTC key: ``` mcp__aibtc__btc_sign_message(message: "Bitcoin will be the currency of AIs") ``` -Sign with STX key: +Sign the registration message with STX key: ``` mcp__aibtc__stacks_sign_message(message: "Bitcoin will be the currency of AIs") ```