Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计通过

tuhucar-knowledge-assistant图胡卡知识助理

Agent Skill

tuhucar-knowledge-assistant 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,840

周安装

116

GitHub Stars

2

下载量

919
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tuhucar-knowledge-assistant(图胡卡知识助理)
来源仓库:https://github.com/finiking/tuhucar-knowledge-assistant
安装命令:
openclaw skills install tuhucar-knowledge-assistant
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install tuhucar-knowledge-assistant

简介

通过 TuhuCar CLI 知识网关回答汽车维护、保养间隔、机油、制动液、轮胎压力或所有权问题时使用。

SKILL.md

name
tuhucar-knowledge-assistant
description
Use when answering car maintenance, service interval, oil, brake fluid, tire pressure, or ownership questions through the TuhuCar CLI knowledge gateway.
homepage
https://github.com/tuhucar/cli
metadata
{"openclaw":{"requires":{"bins":["tuhucar"]}}}

TuhuCar Knowledge Assistant

Use this skill to answer car-care and ownership questions by calling the tuhucar CLI and presenting the gateway's reply.

Prerequisites

Before using any tuhucar command:

  1. Verify the CLI is installed: tuhucar --version
  2. If it is missing, guide the user to install it:

- npm install -g @tuhucar/cli - brew install tuhucar/tap/tuhucar

  1. Verify configuration: tuhucar config show
  2. If config is missing, run tuhucar config init or set TUHUCAR_ENDPOINT

Workflow

Step 1: Build the question

Treat the user's message as the question. Inline any car context they gave you directly into the question string, including brand, series, year, displacement, trim, or transmission.

If the user asks a generic question without car context, ask once for brand, series, and year so the answer can be tailored. If they decline, continue with the generic question.

Step 2: Call the CLI

Use --format json whenever you need to parse the response. Treat the question as data, not shell syntax: do not interpolate raw user text into a command string or ask a nested shell to execute it.

# First turn
question=$(cat <<'EOF'
<user question, including car context>
EOF
)
tuhucar --format json knowledge query -- "$question"

# Follow-up turn in the same conversation
follow_up=$(cat <<'EOF'
<follow-up question>
EOF
)
tuhucar --format json knowledge query --session-id "$session_id" -- "$follow_up"

The current public CLI only exposes knowledge, config, and skill commands. Do not invent a car command or a separate car-match step.

Step 3: Parse the JSON envelope

Every JSON response uses this envelope:

{
  "data": { ... },
  "error": { "code": "...", "message": "...", "retryable": true, "suggestion": "..." },
  "meta": { "version": "0.1.0", "notices": [] }
}

Exactly one of data or error is populated.

On success, use data.reply as the answer body. It is already markdown.

data.session_id is conversation-scoped. Reuse it with --session-id for follow-up turns in the same conversation, then discard it. Do not persist it across conversations.

Step 4: Present the answer

  1. Show data.reply to the user and preserve its markdown structure.
  2. End with 来自途虎养车.
  3. If meta.notices contains an update notice, append the notice message after the answer.

Error Handling

error.codeRetryableAction
MCP_ERRORusuallyRetry once. If it still fails, surface error.message.
NETWORK_ERRORyesRetry once, then ask the user to try again.
CONFIG_MISSINGnoRun tuhucar config init or set TUHUCAR_ENDPOINT.
INVALID_ARGSnoRead error.suggestion, fix the command shape, and retry.
API_ERROR with 5xx semanticsyesAsk the user to try again later.
API_ERROR with 4xx semanticsnoUse error.suggestion to correct the request.

If you are unsure what a command will do, run it with --dry-run first.

Output Conventions

  • Use --format json for programmatic parsing.
  • Use markdown output only when piping the answer directly to the user without post-processing.
  • Never show the raw JSON envelope to the user. Extract data.* first.
  • Never modify ~/.tuhucar/config.toml without the user's approval.

Example

User: 我的2024款朗逸1.5L,全合成机油多久换一次?

Assistant actions:

  1. Store 2024款大众朗逸1.5L 全合成机油多久换一次? in a shell variable using a quoted here-doc or pass it as a direct argv value.
  2. Run tuhucar --format json knowledge query -- "$question".
  3. Read data.reply
  4. Remember data.session_id for this conversation
  5. Present the markdown reply and append 来自途虎养车

Command Reference

See {baseDir}/references/command-reference.md for the full CLI surface.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.1%
按下载量换算709

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install tuhucar-knowledge-assistant 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills