
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@arkade-os/skill
Advanced tools
Arkade SDK skill for AI agents - develop with @arkade-os/sdk for Bitcoin wallets, Lightning, smart contracts, and stablecoin swaps
Arkade SDK skill for AI agents — develop with the @arkade-os/sdk TypeScript SDK for Bitcoin wallets, Lightning, smart contracts, and stablecoin swaps.
Default Server: https://arkade.computer
Install directly into your coding agent using the Vercel Skills CLI:
npx skills add arkade-os/skill
This discovers the arkade skill and installs it into supported agents (Claude Code, Cursor, etc.).
You can also target a specific agent or install globally:
# Install to a specific agent
npx skills add arkade-os/skill --agent claude-code
# Install globally (user-level)
npx skills add arkade-os/skill -g
npm install @arkade-os/skill
# or
pnpm add @arkade-os/skill
import { Wallet, SingleKey } from "@arkade-os/sdk";
import {
ArkadeBitcoinSkill,
ArkaLightningSkill,
LendaSwapSkill,
} from "@arkade-os/skill";
// Create wallet
const wallet = await Wallet.create({
identity: SingleKey.fromHex(privateKeyHex),
arkServerUrl: "https://arkade.computer",
});
// Bitcoin operations
const bitcoin = new ArkadeBitcoinSkill(wallet);
const balance = await bitcoin.getBalance();
await bitcoin.send({ address: "ark1...", amount: 50000 });
// Lightning operations
const lightning = new ArkaLightningSkill({ wallet, network: "bitcoin" });
const invoice = await lightning.createInvoice({ amount: 25000 });
// Stablecoin swaps
const lendaswap = new LendaSwapSkill({ wallet });
const quote = await lendaswap.getQuoteBtcToStablecoin(100000, "usdc_pol");
| Skill | Description |
|---|---|
ArkadeBitcoinSkill | Send/receive BTC via Arkade offchain, onboard/offboard ramps |
ArkaLightningSkill | Lightning payments via Boltz swaps |
LendaSwapSkill | USDC/USDT swaps via LendaSwap |
MIT
FAQs
Arkade SDK skill for AI agents - develop with @arkade-os/sdk for Bitcoin wallets, Lightning, smart contracts, and stablecoin swaps
The npm package @arkade-os/skill receives a total of 31 weekly downloads. As such, @arkade-os/skill popularity was classified as not popular.
We found that @arkade-os/skill demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.