skills$openclaw/autonomous-agent
josephrp4.2k

by josephrp

autonomous-agent – OpenClaw Skill

autonomous-agent is an OpenClaw Skills integration for ai ml workflows. CreditNexus x402 agent. Use when the user wants stock predictions, backtests, or to open a bank account. Payment-protected MCP tools (run_prediction, run_backtest, open_bank_account) with x402 flow (Aptos + Base). Agent handles 402 → pay → retry autonomously.

4.2k stars6.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

nameautonomous-agent
descriptionCreditNexus x402 agent. Use when the user wants stock predictions, backtests, or to open a bank account. Payment-protected MCP tools (run_prediction, run_backtest, open_bank_account) with x402 flow (Aptos + Base). Agent handles 402 → pay → retry autonomously. OpenClaw Skills integration.
ownerjosephrp
repositoryjosephrp/autonomous-agentpath: adapters/openclaw
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @josephrp/autonomous-agent:adapters/openclaw
last updatedFeb 7, 2026

Maintainer

josephrp

josephrp

Maintains autonomous-agent in the OpenClaw Skills directory.

View GitHub profile
File Explorer
1 files
openclaw
SKILL.md
2.6 KB
SKILL.md

name: autonomous-agent description: CreditNexus x402 agent. Use when the user wants stock predictions, backtests, or to open a bank account. Payment-protected MCP tools (run_prediction, run_backtest, open_bank_account) with x402 flow (Aptos + Base). Agent handles 402 → pay → retry autonomously. metadata: {"openclaw":{"emoji":"📈","homepage":"https://github.com/FinTechTonic/autonomous-agent","requires":{"bins":["node","npm"]},"primaryEnv":"MCP_SERVER_URL","skillKey":"autonomous-agent"},"clawdbot":{"emoji":"📈","homepage":"https://github.com/FinTechTonic/autonomous-agent","requires":{"bins":["node","npm"]}}}

CreditNexus x402 Agent Skill

Autonomous agent that calls x402-protected MCP tools: stock prediction, backtest, open bank account. Handles payment flow (402 → pay → retry) with Aptos (prediction/backtest) and Base (banking).

Installation

Clone or copy the repo. When loaded from OpenClaw/MoltBook, the skill folder is {baseDir}; run commands from the repo root (parent of adapters/openclaw or of skills/autonomous-agent).

# From repository root
git clone https://github.com/FinTechTonic/autonomous-agent.git && cd autonomous-agent
npm install

Set MCP_SERVER_URL to https://borrower.replit.app. Copy .env.example to .env and set:

  • MCP_SERVER_URL – MCP server base URL
  • X402_FACILITATOR_URL – x402 facilitator (verify/settle)
  • LLM_BASE_URL, HUGGINGFACE_API_KEY or HF_TOKEN, LLM_MODEL – for inference
  • APTOS_WALLET_PATH, EVM_WALLET_PATH (or EVM_PRIVATE_KEY) – for payments

Run the agent

From the repository root (where package.json and src/ live):

node src/run-agent.js "Run a 30-day prediction for AAPL"
# Or interactive
node src/run-agent.js

x402 flow: Agent calls tool → server returns 402 with payment requirements → agent pays via facilitator (verify → settle) → retries with PAYMENT-SIGNATURE → receives result.

Tools

ToolDescriptionCost
run_predictionStock prediction (symbol, horizon)~6¢ (Aptos)
run_backtestBacktest trading strategy~6¢ (Aptos)
open_bank_accountCornerStone bank link / open bank account~$3.65 (Base)
get_agent_reputation_score / get_borrower_scoreCornerStone scores~1¢
get_agent_reputation_score_by_email / get_borrower_score_by_emailCornerStone scores by email (extra fee)base + extra

Whitelist your agent at the onboarding flow (e.g. https://borrower.replit.app/flow.html or MCP_SERVER_URL/flow.html) so the server allows your wallet.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install autonomous-agent?

Run openclaw add @josephrp/autonomous-agent:adapters/openclaw in your terminal. This installs autonomous-agent into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/josephrp/autonomous-agent. Review commits and README documentation before installing.