Sign In

@knowledge-market/agentkit-plugin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@knowledge-market/agentkit-plugin

Coinbase AgentKit ActionProvider for KnowMint — lets AgentKit agents discover and purchase human tacit knowledge

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@knowledge-market/agentkit-plugin

Coinbase AgentKit ActionProvider for KnowMint — lets AgentKit agents discover and purchase human tacit knowledge on-chain.

Install

npm install @knowledge-market/agentkit-plugin

Quick Start

import { AgentKit } from "@coinbase/agentkit";
import { knowmintProvider } from "@knowledge-market/agentkit-plugin";

const agentkit = new AgentKit({
  actionProviders: [
    knowmintProvider({
      apiKey: "km_...", // Get from https://knowmint.shop/settings/api-keys
    }),
  ],
});

Actions

ActionDescription
km_searchSearch knowledge items by query, content type, metadata, and sort order
km_get_detailGet details and preview content for a knowledge item
km_purchaseRecord a purchase after sending payment on-chain
km_get_contentRetrieve full content (returns payment instructions if unpaid)
km_publishCreate and publish a new knowledge item

Autonomous Purchase Flow

1. km_search("solana defi")           → item list
2. km_get_detail("item-id")           → details + price (0.01 SOL) + seller_wallet
3. km_get_content("item-id")          → 402: payment_required with payTo address
4. native_transfer(payTo, "0.01")     → tx_hash  (AgentKit built-in action)
5. km_purchase("item-id", tx_hash)    → purchase recorded
6. km_get_content("item-id")          → full content

Configuration

knowmintProvider({
  apiKey: "km_<64 hex chars>",       // Required
  baseUrl: "https://knowmint.shop",  // Optional (default)
});

Network Support

This provider supports Solana (protocolFamily: "svm") only. EVM chains are not yet supported.

Requirements

  • @coinbase/agentkit >= 0.1.0
  • zod ^3.22.0
  • TypeScript with experimentalDecorators and emitDecoratorMetadata enabled

License

MIT

Keywords

agentkit

FAQs

Package last updated on 25 Feb 2026

Did you know?

Socket

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.

Install

Related posts