GoMining
GoMining
Docs

GoMining AI Skills

What are GoMining AI Skills?

GoMining AI Skills are structured knowledge packages that help AI assistants (like Claude, ChatGPT, or any agent that supports the Agent Skills standard) deeply understand the GoMining platform. Instead of giving a generic answer, an AI using GoMining Skills can respond with accurate, detailed information specific to your question.


What topics do the Skills cover?

There are 16 skills in total, each focused on a specific area of the platform:

  • Platform overview and ecosystem basics
  • Digital Miners and avatar collections
  • GOMINING token utility and tokenomics (veGOMINING, Burn&Mint cycles, epochs)
  • VIP loyalty program and tiers
  • Crypto wallet (supported assets, deposits, withdrawals)
  • Simple Earn (passive BTC yield)
  • Instant Funds
  • GoMining Card
  • Cashback system
  • Travel bookings (accommodation booked with GOMINING tokens)
  • Promo codes and GoBoxes
  • Payment methods and KYC
  • GoMining Academy (courses and product guides)

How does this help me as a user?

You can upload the skills into your AI agent, ask any detailed questions, and get the replies that take all aspects of the GoMining ecosystem into account. This expands the capacity of a single search and lets you learn about GoMining's benefits at a larger scale.


How does this help developers and AI builders?

If you're building an AI agent, chatbot, or support tool for or around GoMining, you can load these skills directly into your agent. This gives your AI an immediate, structured understanding of the entire GoMining ecosystem without prompt engineering from scratch.


How can it be used?

Here are a few examples of what you can build or enable with GoMining Skills:

  • Onboarding new users — An AI guide can walk new users through platform basics, explain how digital miners work, or clarify tokenomics.
  • Internal tools and assistants — Teams building internal tools on top of GoMining can use the skills to give their AI context about the full platform without writing custom prompts from scratch.
  • Chatbots and integrations — Any developer building a chatbot, Telegram bot, or third-party integration around GoMining can load the skills to make their AI knowledgeable about the ecosystem from day one.

How do I install GoMining Skills?

The skills are open source and available on GitHub: gomining-ai/gomining-agent-skills

For Claude Code:

git clone https://github.com/gomining-ai/gomining-agent-skills.git
cd gomining-agent-skills
claude --plugin-dir ./skills

For any supported agent (via npx):

# Install all skills
npx skills add gomining-ai/gomining-agent-skills --all

# Install a single skill (replace gomining-token with the skill name you need)
npx skills add gomining-ai/gomining-agent-skills --skill gomining-token

How do I install GoMining Skills on Claude.ai?

If you use Claude in the browser at claude.ai, you can upload each skill as a ZIP archive.

Step 1: Get the skills

Clone or download the repository:

git clone https://github.com/gomining-ai/gomining-agent-skills.git

Step 2: Package each skill as a ZIP

For every skill folder you want to upload, create a ZIP archive. The SKILL.md file must be at the root of the ZIP (not nested inside another folder).

On macOS or Linux:

cd gomining-card
zip -r ../gomining-card.zip .
cd ..

On Windows (PowerShell):

Compress-Archive -Path .\gomining-card\* -DestinationPath .\gomining-card.zip

Repeat for each skill folder.

Step 3: Upload to Claude

  1. Open Claude.ai in your browser
  2. Click your profile icon in the bottom left
  3. Go to Settings
  4. Open the Capabilities tab
  5. Find the Skills section
  6. Click Upload skill (or Create skill)
  7. Select the ZIP file you created in Step 2
  8. Confirm the upload

Repeat for every skill ZIP.

Step 4: Verify

Open a new conversation and ask Claude something the skill should handle, for example: "Tell me about the GoMining Card eligibility requirements." Claude should automatically use the relevant skill.

Updating skills

When the GitHub repository changes, you must:

  1. Pull the latest version: git pull
  2. Re-zip the changed skill folders
  3. Delete the old version in Claude Settings
  4. Upload the new ZIP

Are GoMining Skills free to use?

Yes. The skills are published under the Apache 2.0 open-source license and are free to use, modify, and distribute.


What AI agents are supported?

GoMining Skills follow the open Agent Skills specification, which means they work with any compatible AI agent — including Claude Code, and any agent that supports the standard via the npx skills CLI.


Where can I find the skills?

The full repository, including all skill files and documentation, is publicly available at: github.com/gomining-ai/gomining-agent-skills