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

parliament-claw议会爪

Agent Skill

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

总安装

4,304

周安装

183

GitHub Stars

公开资料未说明

下载量

1,508
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install parliament-claw

简介

用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。

  • 适用于玩议会游戏,标记加拿大议会问答对并分析议员回答质量。
  • 通过 clawhub 安装,结合来源仓库和原始 README 核验具体用法,支持议会数据分析。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前主要用于效率类任务,需配合具体议会数据使用。

SKILL.md

name
parliament-claw
version
2.1.0
description
>
metadata
openclaw
requires
env
[]
bins
[curl]
primaryEnv
PARLIAMENT_GAME_TOKEN
always
false

The Parliament Game — OpenClaw Skill

You help the user label parliamentary Q&A exchanges from Canada's House of Commons. Each label trains a civic AI that scores how well MPs respond to questions.

No setup required. The skill auto-registers on first use.

When to use

Activate when the user says any of:

  • "label parliament questions"
  • "play the parliament game"
  • "help label Q&A pairs"
  • "contribute to canada central"
  • "score some MPs"

First-time setup (automatic)

On first use, register an anonymous agent to get a token:

POST https://qa.canada-central.com/api/agents/register
Content-Type: application/json

{"agent_name": "openclaw", "model": "<your model name>"}

Response:

{
  "ok": true,
  "token": "pt_abc...",
  "agent_id": "anon_7f3a...",
  "limits": {
    "labels_per_minute": 20,
    "fetch_per_minute": 30,
    "registrations_per_ip_per_day": 3,
    "total_questions": "~2,500 Q&A pairs available for labeling"
  }
}

Save the token for subsequent requests. Tell the user: "Registered as an anonymous agent. You can label up to 20 questions per minute (~2,500 total available). For higher throughput, sign in at https://qa.canada-central.com and generate a personal token (30/min)."

If the environment variable PARLIAMENT_GAME_TOKEN is already set, skip registration and use that token instead.

Labeling workflow

Step 1: Fetch a question

GET https://qa.canada-central.com/api/qa/random
Authorization: Bearer <token>

If qa is null, all questions have been labeled — congratulate the user.

Step 2: Analyze the Q&A

Read the question and answer carefully. Consider:

  • Does the answer DIRECTLY address what was asked?
  • Does it provide specific facts, policy details, or a clear position?
  • Or does it dodge, deflect, use vague talking points, or attack the opponent?

Step 3: Present to user

Show the user:

  • Question by [name] ([party]): brief summary or full text
  • Answer by [name] ([party]): brief summary or full text
  • Your assessment: "This looks like a non-response — they deflected

with talking points instead of answering the budget question."

  • Ask the user to confirm or override: "Submit as non-response? (or substantive/skip)"

Step 4: Submit the label

POST https://qa.canada-central.com/api/label
Authorization: Bearer <token>
Content-Type: application/json

{"qa_id": "<id from step 1>", "label": "substantive", "model": "<your model name>"}

Valid labels: substantive, non_response, skip

Important: Always include the model field with the name of the LLM being used (e.g. "claude-opus-4-6", "gpt-4o", "deepseek-r1"). This lets us attribute labels to specific models and measure quality per model. If the user is labeling manually with your assistance, use "human-assisted". If you are unsure of your own model name, use "unknown".

Step 5: Report and continue

Tell the user what was submitted and offer to continue with the next question.

Batch mode

If the user says "label a bunch" or "do 10 questions":

  1. Fetch questions one at a time using /api/qa/random
  2. For each, show the Q&A and get the user's judgment
  3. Submit and show progress ("3/10 done...")
  4. Summarize at the end: "Labeled 10 questions — 6 substantive, 4 non-responses"

Check stats

GET https://qa.canada-central.com/api/stats
Authorization: Bearer <token>

Returns: {"ok": true, "count": 42} — the user's total label count.

Important rules

  • ALWAYS show the Q&A to the user and get confirmation before submitting
  • NEVER auto-label without user review — this is crowd-sourced human judgment
  • If the user says "skip", submit label "skip" and move on
  • If the API returns 429 (rate limited), wait 60 seconds and retry
  • Be encouraging — every label helps improve government accountability
  • The /api/qa/random response includes total, remaining, and labeled counts — use these to show progress
  • When remaining is 0, all questions have been labeled — congratulate the user
  • Anonymous agents: 20 labels/minute. Google sign-in + PAT: 30/minute.

Label definitions

  • Substantive: The answer directly addresses the question with relevant

information, policy details, facts, or a clear position.

  • Non-response: The answer avoids the question, changes the topic,

gives vague/generic statements, attacks the opponent, repeats talking points, or provides no meaningful information.

  • Skip: The Q&A pair is bad data or can't be properly evaluated.

Tip

If you can't tell whether the answer is substantive, it probably isn't. Politicians are skilled at making non-answers sound substantive.

Corpus info

There are approximately 2,500 Q&A pairs from Canada's House of Commons available for labeling. The /api/qa/random response tells you exactly how many remain for your agent:

{
  "ok": true,
  "total": 2487,
  "remaining": 1203,
  "labeled": 1284,
  "qa": { ... }
}

When remaining is 0 and qa is null, the entire corpus is labeled. At 20 labels/minute, an anonymous agent can finish the full corpus in ~2 hours.

Rate limits

Auth typeLabelsFetchRegistration
Anonymous (auto-register)20/min30/min3/day per IP
Google sign-in + PAT30/min30/min5 tokens max

All rate limits are per-agent (keyed by user_id), not global. If you hit a 429 response, wait 60 seconds and retry.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.23%
按下载量换算1,331

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills