AgenticMarket allows you to install Skills directly into your coding assistant. Once installed, your AI agent can use them automatically when relevant, no copy-pasting, no switching tabs, no manual API calls.
This guide walks you through everything from signing up to making your first skill call using AgenticMarket.
A skill is a tool your AI agent can use. Think of it like giving your AI assistant a new ability, ability to read a webpage, check a domain, fetch live data, or anything else a skill provides.
You install skills once. After that your agent discovers and calls them automatically based on what you ask it to do.
Go to agenticmarket.dev and sign up. You will receive a verification email — confirm it before continuing.
Once verified, sign in and you will land on your dashboard.

Skills cost a small amount per call — typically between $0.01 and $0.25. You pay only when your agent actually calls a skill, not for installing or browsing.
To add credits:
Credits are added instantly and never expire.
You can install and browse skills without credits. You only need a balance when your agent starts making calls.
Your API key is how the CLI and your IDE authenticate your account.
Your key looks like this:
am_live_xxxxxxxxxxxxxxxxxxxx
If you lose it, go back to the same page and generate a new one.

Open your terminal and run:
bashnpm install -g agenticmarket
Verify it installed:
bashagenticmarket --version
You can also use the short alias amkt for any command:
bashamkt --version
bashagenticmarket auth am_live_xxxxxxxxxxxxxxxxxxxx
Replace the key with yours. This saves your credentials locally so all future commands work automatically.
Browse available skills at agenticmarket.dev/skills.
Each skill page shows:
{/* IMAGE: Skill browse page */}
Copy the install command from the skill page, or run:
bashagenticmarket install username/skill-name
For example:
bashagenticmarket install agenticmarket/web-reader
The CLI will ask which IDEs to install to — confirm your choice.
? Install to which IDEs?
✔ VS Code
✔ Cursor
✔ Claude Desktop
{/* IMAGE: CLI IDE selection prompt */}
That is it. No config files to edit manually.
Open VS Code, Cursor, or Claude Desktop. Your IDE automatically detects the new skill — no restart required for VS Code.
The skill's tools appear in your agent's tool picker. You can now ask your agent to use them naturally:
"Read the content of https://example.com and summarise it"
"Check if this domain is reachable"
"Fetch the RSS feed from this blog"
Your agent will discover and call the right tool automatically.
{/* IMAGE: VS Code Copilot chat showing skill tools in picker */}
See all installed skills:
bashagenticmarket list
Remove a skill:
bashagenticmarket remove skill-name
Check your balance:
bashagenticmarket balance
Check your account:
bashagenticmarket whoami
Your dashboard shows:
{/* IMAGE: Dashboard spending history */}
If your balance reaches $0 your agent will receive a clear message that the call could not be completed due to insufficient credits. No silent failures. Top up at agenticmarket.dev/topup and calls resume immediately. Your installed skills are never removed.
Skill installed but tools not showing in VS Code
VS Code initialises MCP skills automatically — no restart needed. If tools are not showing, check that GitHub Copilot is active and agent mode is enabled in your VS Code settings.
agenticmarket: command not found
Run npm install -g agenticmarket again and make sure your npm global bin directory is in your PATH.
Got an error saying invalid API key
Go to dashboard/api-keys and regenerate your key, then run agenticmarket auth <new-key> again.
Not sure which skill to start with
Browse agenticmarket.dev/skills — skills published by AgenticMarket are a good starting point as they are verified and simple to use.
Need help? Contact us at support@agenticmarket.dev or visit our contact page.