โ† All skills
Tencent SkillHub ยท Developer Tools

Klutch

OpenClaw skill for Klutch programmable credit card API integration. View cards, transactions, spending categories, and analyze spending patterns.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

OpenClaw skill for Klutch programmable credit card API integration. View cards, transactions, spending categories, and analyze spending patterns.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, config/klutch.example.json, requirements.txt, scripts/auth.py, scripts/klutch.py

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.3.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

Klutch Skill

OpenClaw skill for Klutch programmable credit card API integration.

Overview

This skill provides a command-line interface for accessing Klutch credit card data through their GraphQL API. It supports viewing card information, transaction history, spending categories, and spending analysis.

Prerequisites

Klutch Account: Active Klutch credit card account API Credentials: Client ID and Secret Key from Klutch developer portal Python 3.10+: Required for running the scripts

Environment Variables

Set your Klutch API credentials: # Option 1: Direct credentials export KLUTCH_CLIENT_ID="your-client-id" export KLUTCH_SECRET_KEY="your-secret-key" # Option 2: 1Password CLI integration (requires 'op' CLI) export KLUTCH_1PASSWORD_ITEM="Klutch API Credential"

Configuration File

The skill stores configuration and session tokens in ~/.config/klutch/: ~/.config/klutch/ โ”œโ”€โ”€ config.json # User preferences โ””โ”€โ”€ token.json # Cached session token (auto-managed)

Configuration Options

Edit ~/.config/klutch/config.json to customize: { "api": { "endpoint": "https://graphql.klutchcard.com/graphql", "timeout": 30 } }

Balance

# Check card information python scripts/klutch.py balance # Example output: { "cards": [ { "id": "crd_xxx", "name": "Martin Kessler", "status": "ACTIVE" } ] }

Transactions

# List recent transactions (last 30 days) python scripts/klutch.py transactions # Limit results python scripts/klutch.py transactions --limit 25 # Example output: { "transactions": [ { "id": "txn_xxx", "amount": -100.0, "merchantName": "Checking", "transactionStatus": "SETTLED" } ] }

Card Management

List Cards python scripts/klutch.py card list View Categories python scripts/klutch.py card categories View Spending by Category python scripts/klutch.py card spending

Configuration Management

# Get configuration value python scripts/klutch.py config get api.timeout # Set configuration value python scripts/klutch.py config set api.timeout 60 # View all configuration python scripts/klutch.py config get

API Endpoints

The skill connects to Klutch's GraphQL API: EnvironmentEndpointProductionhttps://graphql.klutchcard.com/graphqlSandboxhttps://sandbox.klutchcard.com/graphql

Authentication Flow

The skill uses Klutch's session token authentication: Initial Request: Sends createSessionToken mutation with Client ID and Secret Key Token Caching: Stores the JWT session token in ~/.config/klutch/token.json Subsequent Requests: Uses cached token until it expires Auto-Refresh: Creates a new session token when the cached one fails

Hypothetical Agent Use Cases

The Klutch skill enables agents to handle their own budget or provide personal finance assistance. Sub-Agent Budgeting: Create a virtual card for a sub-agent to pay for its own usage (AWS, OpenAI) with a hard limit. Budget Guardrails: Monitor spending categories (e.g., 'FOOD') and alert the user if they exceed a monthly budget. Transaction Alerts: Watch for specific merchants or unusual activity and notify the user immediately. Expense Summary: Summarize monthly spending and categorize transactions for personal journaling.

Error Handling

The skill handles common error scenarios: Authentication failures: Prompts to verify credentials Session expiration: Automatically creates a new session token Network errors: Clear error messages with retry suggestions GraphQL errors: Detailed error messages from the API

Using from OpenClaw Sessions

# OpenClaw can invoke the skill directly klutch balance klutch transactions --limit 5 klutch card list

Authentication Issues

If you receive authentication errors: Verify your credentials with python scripts/klutch.py config get Delete ~/.config/klutch/token.json to force re-authentication Check that your API credentials are correct

Session Token Issues

Force token refresh: rm ~/.config/klutch/token.json

Security Notes

Never commit credentials to version control The skill stores tokens in ~/.config/klutch/token.json Session tokens are refreshed automatically when needed

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts1 Config1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/auth.py Scripts
  • scripts/klutch.py Scripts
  • config/klutch.example.json Config
  • requirements.txt Files