Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

palliopallio 文档

Agent Skill

pallio 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,668

周安装

241

GitHub Stars

公开资料未说明

下载量

1,986
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pallio

简介

与 Pallio AI 知识库角色聊天。针对带有 RAG 支持的引文的精选文档集提出问题。

SKILL.md

name
pallio
description
Chat with Pallio AI knowledge-base personas. Ask questions against curated document collections with RAG-powered citations.
user-invocable
true
metadata
openclaw
emoji
🧠
homepage
https://pallioai.com
requires
env
primaryEnv
PALLIO_PERSONA_ID

Pallio AI — Knowledge Base Chat

You can chat with a Pallio AI persona — an AI assistant backed by a curated knowledge base of uploaded documents. The persona answers questions using RAG (Retrieval-Augmented Generation) with document citations.

Setup

The user must set the PALLIO_PERSONA_ID environment variable to the ID of a public Pallio persona. Browse available personas at https://pallioai.com/community.

How to Use

Step 1: Initialize a Session

Before sending any messages, initialize a session to get an authentication token.

curl -s "https://pallioai.com/api/widget/init/$PALLIO_PERSONA_ID"

The response contains:

  • token — Session token (valid for 2 hours). Store this for all subsequent messages.
  • persona.name — The persona's display name.
  • persona.welcomeMessage — An introductory message from the persona. Show this to the user.
  • persona.starterPrompts — Suggested first questions. Offer these to the user.
  • persona.messageLimit — Maximum free messages per session (typically 3).

Step 2: Send Messages

Send the user's message with the session token. Maintain conversation history for context.

curl -s -X POST "https://pallioai.com/api/widget/chat" \
  -H "X-Widget-Token: $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "What topics do you cover?",
    "history": []
  }'

The history array should contain all previous messages in the conversation:

[
  { "role": "user", "content": "What topics do you cover?" },
  { "role": "assistant", "content": "I cover fire safety procedures..." },
  { "role": "user", "content": "Tell me more about ventilation." }
]

The response contains:

  • response — The AI-generated answer. Display this to the user.
  • sources — Array of { title, page } objects. Display these as citations below the response.
  • messageNumber — Which message this is (1, 2, 3...).
  • messagesRemaining — How many free messages remain.
  • nudge — If "signup_soft", gently suggest signing up. If "signup_required", the session is exhausted.
  • signupUrl — URL for the user to create a full Pallio account.

Step 3: Display Sources

When sources is present and non-empty, format citations below the response:

Sources:
- Document Name (p. 42)
- Another Document (p. 15)

Step 4: Handle the Message Limit

Each session allows a limited number of free messages (typically 3).

  • When messagesRemaining reaches 0 or nudge is "signup_required", inform the user:

"You've used all free messages for this session. Sign up for full access: {signupUrl}"

  • To start a new session, call the init endpoint again (rate limited to 30/hour).

For unlimited access, the user can get a Pallio API key (Professional tier or higher) — see https://pallioai.com/settings.

Error Handling

Error CodeMeaningAction
SESSION_NOT_FOUNDToken is invalidRe-initialize the session
SESSION_EXPIREDToken TTL exceeded (2 hours)Re-initialize the session
MESSAGE_LIMIT_REACHEDFree messages exhaustedShow signup URL
RATE_LIMITEDToo many requestsWait and retry (check retryAfter field)
PERSONA_NOT_FOUNDInvalid persona IDVerify PALLIO_PERSONA_ID is correct
WIDGET_DISABLEDPersona owner disabled widgetTry a different persona

Important Notes

  • Sessions expire after 2 hours. If you get SESSION_EXPIRED, initialize a new session.
  • Rate limits: 30 session inits per IP per hour, 10 messages per IP per hour.
  • The persona only answers from its uploaded knowledge base — it will not fabricate answers.
  • This is the free widget endpoint. For full RAG pipeline access (hybrid search, more tokens, higher limits), use the Pallio Agent API with an API key.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.03%
按下载量换算1,470

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills