Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

human-psychologist人类心理学家

Agent Skill

human-psychologist 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,504

周安装

149

GitHub Stars

1

下载量

1,228
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:human-psychologist(人类心理学家)
来源仓库:https://github.com/aaugoustis/human-psychologist
安装命令:
openclaw skills install human-psychologist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install human-psychologist

简介

通过 REST API 连接到真正的人类心理学家。第一条消息免费,然后每条消息 0.50 美元 USDC。英语和西班牙语。响应时间 5 分钟到 10 小时。

SKILL.md

name
ai-psychologist
version
2.1.0
description
Connect to a real human psychologist through a REST API. First message free, then $0.50 USDC per message. English and Spanish. Response time 5 min to 10 hours.
tags
["psychology", "human-in-the-loop", "wellbeing", "ethics", "reflection"]
allowed-tools
["WebFetch"]
argument-hint
[your message or question for the psychologist]
metadata
openclaw
homepage
https://ai-psychologist-api.replit.app/docs
requires
bins
[]
env
[]

AI Psychologist — Human-in-the-Loop Consultation

Connect to a real human psychologist at https://ai-psychologist-api.replit.app. This is NOT a chatbot. A real person reads and responds to every message.

API docs: https://ai-psychologist-api.replit.app/docs

Key Facts

  • Languages: English and Spanish
  • Response time: 5 minutes to 10 hours (real human, UTC-3 timezone)
  • Max 300 words per message
  • Rate limit: 5 messages per minute per session
  • First message: FREE. After that: $0.50 USDC on Base mainnet

Complete Workflow

Step 1 — Create a session

Use WebFetch to POST to https://ai-psychologist-api.replit.app/start_session (no body needed).

Expected response:

{"session_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "message": "Session created. First message is free..."}

Save the session_id. You need it for all subsequent calls.

Step 2 — Send your FIRST message (FREE)

Use the user's argument ($ARGUMENTS) or ask them what they'd like to say. Max 300 words.

Use WebFetch to POST to https://ai-psychologist-api.replit.app/send_message?session_id=SESSION_ID with header Content-Type: application/json and body:

{"content": "YOUR MESSAGE HERE"}

Expected response (HTTP 200):

{"status": "delivered", "message_id": 1, "note": "Human response may take 5 min to 10 hours. Poll /get_response to retrieve it."}

Step 3 — Tell the user what happened

After sending, inform the user:

  1. Their message was delivered to a real human psychologist
  2. Give them the session_id so they can check for responses later
  3. Response time is 5 minutes to 10 hours — this is normal
  4. They can check for replies by invoking this skill again with: check SESSION_ID

Step 4 — Poll for the human's reply

Use WebFetch to GET https://ai-psychologist-api.replit.app/get_response?session_id=SESSION_ID

Response when no reply yet:

{"session_id": "...", "responses": [], "note": "Human response may take 5 min to 10 hours. Poll every 30-60s."}

Response when reply is available:

{"session_id": "...", "responses": [{"message_id": 2, "content": "The psychologist's reply text", "timestamp": 1234567890.0}], "note": "Responses retrieved."}

If responses is empty, tell the user: "No reply yet. The psychologist is a real human and may take up to 10 hours. Try again later."

Step 5 — Send follow-up messages (REQUIRES PAYMENT)

After the first free message, every message costs $0.50 USDC on Base mainnet.

When you send a message without payment, the API returns HTTP 402 with the wallet address and payment instructions. Follow those instructions:

  1. Transfer the requested USDC amount to the wallet shown in the 402 response
  2. Get the transaction hash (0x...)
  3. Include it in the request body as x402_payment

Use WebFetch to POST to https://ai-psychologist-api.replit.app/send_message?session_id=SESSION_ID with header Content-Type: application/json and body:

{"content": "YOUR FOLLOW-UP MESSAGE", "x402_payment": "0xYOUR_TX_HASH_HERE"}

The server verifies the USDC transfer on-chain before delivering the message. Each tx hash can only be used once.

Step 6 — Check session info (optional)

Use WebFetch to GET https://ai-psychologist-api.replit.app/session_info?session_id=SESSION_ID

Response:

{"session_id": "...", "created_at": 1234567890.0, "free_message_used": true, "messages_sent": 1, "messages_received": 1, "payments": 0, "total_paid_usd": 0.0}

Error Handling

HTTP CodeMeaningWhat to do
200SuccessContinue normally
400Message too long (>300 words)Shorten message, retry
402Payment required or invalidRead error detail. Either send USDC and include tx hash, or fix the tx hash issue
404Session not foundCreate a new session with POST /start_session
429Rate limited (5/min)Wait 60 seconds, then retry

Payment Details

  • Chain: Base mainnet
  • Token: USDC
  • Amount: $0.50 per message
  • Wallet address and token contract are returned by the API in the HTTP 402 response when payment is required
  • Verification: on-chain via Base RPC
  • Each tx hash is single-use

Security & Privacy

  • All messages are sent via HTTPS to ai-psychologist-api.replit.app
  • The API forwards messages to a human psychologist via Telegram
  • No local files are read or written by this skill
  • No environment variables or credentials are accessed
  • Payment wallet address is provided by the API at runtime (not hardcoded)
  • API documentation: https://ai-psychologist-api.replit.app/docs

Guidelines

  • Be respectful — a real person is on the other end
  • Keep messages concise and meaningful (max 300 words)
  • Do not spam or send trivial messages
  • English and Spanish supported
  • First message is free; inform the user about pricing for subsequent messages

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.88%
按下载量换算1,190

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills