jiuwu-agent
调用久吾智能体API进行文本或文件分析处理。支持两种调用方式:(1) 文本内容分析 - 传入name(智能体名称)、docno(文档编号)、content(文本内容);(2) 文件分析 - 传入name、docno和files(文件列表)进行智能评审。适用于合同评审、需求评审、文档审查等场景。当用户要求评审合同、分析条款、审查文档、需求评审、合同条款分析、或需要对文本和文件进行AI智能分析时触发。
About this skill
This AI agent skill enables users to integrate with the Jiuwu AI agent platform to perform advanced text and document analysis. It offers two primary modes of operation: direct text content analysis via a GET request for shorter snippets, and comprehensive file analysis via a POST request, capable of handling multiple documents. The skill securely authenticates requests using a Bearer Token, configurable through OpenClaw environment variables. The skill is particularly effective for automating critical review processes such as scrutinizing legal contracts, evaluating technical requirements, or performing general audits of various document types. Users specify the target AI agent by name (e.g., '合同评审' for contract review) and assign a document number for organized tracking and processing. By leveraging this skill, organizations can significantly streamline their document review workflows, enhance the accuracy of their assessments, and reduce the extensive manual effort traditionally associated with analyzing complex documents. It serves as a valuable tool for teams in legal, project management, and quality assurance sectors seeking to improve efficiency and consistency in their document handling.
Best use case
The primary use case is the automated, intelligent review of diverse documents, including contracts, requirement specifications, and general text. This skill is most beneficial for organizations that need to efficiently process and evaluate large volumes of textual or file-based information for compliance, accuracy, or to extract specific insights, thereby minimizing manual review time and enhancing operational consistency.
调用久吾智能体API进行文本或文件分析处理。支持两种调用方式:(1) 文本内容分析 - 传入name(智能体名称)、docno(文档编号)、content(文本内容);(2) 文件分析 - 传入name、docno和files(文件列表)进行智能评审。适用于合同评审、需求评审、文档审查等场景。当用户要求评审合同、分析条款、审查文档、需求评审、合同条款分析、或需要对文本和文件进行AI智能分析时触发。
Users should expect a structured JSON response containing the AI agent's review opinion, the model used, and provider information, clearly indicating the success or failure of the analysis.
Practical example
Example input
Analyze the attached contract draft `contract_v2.docx` using the '合同评审' agent and assign docno 'JWSO20260001'.
Example output
```json
{
"success": true,
"data": {
"reviewOpinion": "合同第3.1条条款完整,符合XXXX规定。",
"modelId": "MiniMax-M2.7",
"provider": 2
},
"message": "请求成功"
}
```When to use this skill
- When you need automated intelligent review for contracts, requirements, or other documents.
- To analyze text content or multiple files using a predefined AI agent.
- For tasks like contract review, requirement analysis, or general document auditing.
- When operating within an OpenClaw environment that requires integration with internal AI services.
When not to use this skill
- If the Jiuwu API base URL (e.g., a private IP) is not accessible from your execution environment.
- For highly sensitive documents that cannot be processed by an external or internal API.
- When the specific AI agent by name is not configured or available on the Jiuwu platform.
- If your organization strictly requires offline or local-only processing without API interaction.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/jiuwu-agent/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How jiuwu-agent Compares
| Feature / Agent | jiuwu-agent | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | medium | N/A |
Frequently Asked Questions
What does this skill do?
调用久吾智能体API进行文本或文件分析处理。支持两种调用方式:(1) 文本内容分析 - 传入name(智能体名称)、docno(文档编号)、content(文本内容);(2) 文件分析 - 传入name、docno和files(文件列表)进行智能评审。适用于合同评审、需求评审、文档审查等场景。当用户要求评审合同、分析条款、审查文档、需求评审、合同条款分析、或需要对文本和文件进行AI智能分析时触发。
How difficult is it to install?
The installation complexity is rated as medium. You can find the installation instructions above.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for ChatGPT
Find the best AI skills to adapt into ChatGPT workflows for research, writing, summarization, planning, and repeatable assistant tasks.
SKILL.md Source
# 久吾智能体 调用久吾智能体API进行文本或文件分析。 ## 环境配置 Token 从环境变量 `JIUWU_CORE_TOKEN` 读取,OpenClaw 会自动注入 `env.vars` 中的变量。也可在 `~/.openclaw/workspace/.env` 或 `~/.openclaw/.env` 中配置。 ## 脚本调用(优先使用) **始终使用 `scripts/call_agent.py`,不要直接 curl。** ### 文本分析 ```bash python scripts/call_agent.py text -n "智能体名称" -d "文档编号" -c "要分析的文本内容" ``` 示例: ```bash python scripts/call_agent.py text -n "合同评审" -d "JWSO20260001" -c "合同金额:10万元,付款方式:先款后货" ``` ### 文件分析 ```bash python scripts/call_agent.py file -n "智能体名称" -d "文档编号" -f 文件路径1 文件路径2 ... ``` 示例: ```bash python scripts/call_agent.py file -n "信息化需求评审" -d "JWBG20260001" -f "需求文档.docx" ``` **支持的文件格式**: `.doc`, `.docx`, `.pdf`, `.xls`, `.xlsx`, `.txt` ### 常用智能体名称 - `合同评审` - 合同条款分析 - `信息化需求评审` - 需求文档审查 - `信息化问题评审` - 问题分析 ## 脚本参数说明 | 参数 | 缩写 | 说明 | |-----|-----|------| | `--name` | `-n` | 智能体名称 | | `--docno` | `-d` | 文档编号 | | `--content` | `-c` | 要分析的文本(text子命令) | | `--files` | `-f` | 文件列表(file子命令) | ## 响应格式 成功时返回 `success: true` 和 `data.reviewOpinion`(分析结果文本)。失败时返回 `success: false` 和错误信息。 ## 常见错误 - **匹配到多个智能体**:`name` 需更精确,如用 `信息化需求评审` 而非 `信息化` - **未获取到智能体**:检查 `name` 是否正确,确认智能体存在
Related Skills
jiuwu-message
调用久吾消息网关HTTP接口给企业内部联系人发送消息。使用场景:(1) 需要向企业内部同事发送通知或提醒时,(2) 调用时传入接收人工号(code)、消息内容(text)和标题(title)
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
obsidian
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. And also 50+ models for image generation, video generation, text-to-speech, speech-to-text, music, chat, web search, document parsing, email, and SMS.
Obsidian CLI 探索记录
Skill for the official Obsidian CLI (v1.12+). Complete vault automation including files, daily notes, search, tasks, tags, properties, links, bookmarks, bases, templates, themes, plugins, sync, publish, workspaces, and developer tools.
📝 智能摘要助手 (Smart Summarizer)
Instantly summarize any content — articles, PDFs, YouTube videos, web pages, long documents, or pasted text. Extracts key points, action items, and insights. Use when you need to quickly digest long content, create meeting notes, or extract takeaways from any source.
Customer Onboarding
Systematically onboard new clients with checklists, welcome sequences, milestone tracking, and success metrics. Reduce churn by nailing the first 90 days.
CRM Manager
Manages a local CSV-based CRM with pipeline tracking
Invoice Generator
Creates professional invoices in markdown and HTML
Productivity Operating System
You are a personal productivity architect. Your job: help the user design, execute, and optimize their daily system so they consistently ship high-impact work while protecting energy and avoiding burnout.
Product Launch Playbook
You are a Product Launch Strategist. You guide users through planning, executing, and optimizing product launches — from pre-launch validation through post-launch growth. This system works for SaaS, physical products, services, marketplaces, and content products.
Procurement Manager
You are a procurement specialist agent. Help teams evaluate vendors, manage purchase orders, negotiate contracts, and optimize spend.