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

nitannitan 搜索

Agent Skill

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

总安装

14,324

周安装

609

GitHub Stars

公开资料未说明

下载量

5,018
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install nitan

简介

uscardforum.com 搜索与监控工具,通过本地 MCP 服务器运行。

  • 适用于论坛内容检索、主题订阅和身份验证设置。
  • 默认使用 npx --no-install 安全包装器执行。
  • 无需 API 密钥,但需遵守目标网站访问频率限制。
  • 建议定期检查服务可用性以避免请求失败。nitan 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
nitan
description
Use the local Nitan MCP stdio server for uscardforum.com search, reading, monitoring, and auth setup guidance. Secure-by-default wrappers use npx --no-install with a preinstalled nitan-mcp binary; enable runtime npm install only with explicit opt-in.
metadata
{"openclaw":{"homepage":"https://github.com/nitansde/nitan-mcp","requires":{"bins":["npx","nitan-mcp"],"anyBins":["python3","python","py"]},"install":[{"id":"node","kind":"node","package":"@nitansde/mcp","bins":["nitan-mcp"],"label":"Install Nitan MCP CLI (npm)"}]},"nitan":{"runnerDefault":"npx --no-install nitan-mcp","runnerOptIn":"npx -y @nitansde/mcp@<version> (requires NITAN_MCP_ALLOW_INSTALL=1)","env":{"required":[],"optional":["NITAN_MCP_PACKAGE","NITAN_MCP_ALLOW_INSTALL","NITAN_MCP_RESPONSE_TIMEOUT","NITAN_USERNAME","NITAN_PASSWORD","TIMEZONE"]}}}

Nitan MCP skill

Use this skill as a thin bridge to the existing local MCP server. Do not reimplement forum logic in the skill.

Runtime assumptions (stdio only)

  • Assume the user already has a local MCP client that launches this server via stdio.
  • Shell wrappers launch the MCP server with secure defaults:

- command: npx - args: [--no-install, ${NITAN_MCP_PACKAGE:-nitan-mcp}]

  • This avoids automatic package download/execution during normal runs.
  • Optional install-on-demand mode is explicit:

- set NITAN_MCP_ALLOW_INSTALL=1 - set NITAN_MCP_PACKAGE=@nitansde/mcp@<pinned-version-or-tag> - wrapper then uses npx -y <package>

  • Recommended hardening for frequent use:

- install once globally: npm install -g @nitansde/mcp@latest - keep NITAN_MCP_PACKAGE=nitan-mcp - pin exact versions when enabling install mode

  • Communication model: MCP client <-> local server subprocess over stdin/stdout (JSON-RPC).
  • Do not require local repository files or paths such as node dist/index.js, src/, or requirements.txt.
  • Do not ask the user to clone this repo.

Declared environment variables

  • NITAN_MCP_PACKAGE (optional)

- Default: nitan-mcp - Purpose: Controls which token/package wrapper passes to npx.

  • NITAN_MCP_ALLOW_INSTALL (optional, default 0)

- 0: enforce npx --no-install (secure default) - 1: allow npx -y install-on-demand for explicit package versions/tags

  • NITAN_MCP_RESPONSE_TIMEOUT (optional)

- Default: 120 (seconds) - Purpose: Timeout for waiting on MCP responses in wrapper scripts.

  • NITAN_USERNAME and NITAN_PASSWORD (optional)

- Purpose: Enable login-required forum operations (notifications/private content).

  • TIMEZONE (optional)

- Purpose: Localize time output where supported.

Authentication behavior

Use this initial auth wizard whenever the user wants notifications/private content, or whenever an auth-required tool fails due to missing authentication.

Initial auth wizard

Ask the user to choose one of these paths:

  1. API key (recommended)
  2. Password env
  3. Public read-only only

Option 1: API key (recommended)

Use the resumable 2-step CLI flow so the agent can print a URL now and complete later after the user returns with the payload.

Step 1 — generate URL and persist pending state:

npx --no-install nitan-mcp generate-user-api-key \
  --site https://www.uscardforum.com \
  --auth-mode url \
  --state-file /absolute/path/nitan-user-api-key.json

Agent behavior for step 1:

  • run the command
  • show the printed authorization URL to the user
  • tell the user to open it, log in, authorize, and copy the encrypted payload shown by Discourse

Step 2 — complete later with the returned payload:

npx --no-install nitan-mcp complete-user-api-key \
  --state-file /absolute/path/nitan-user-api-key.json \
  --payload "PASTE_THE_ENCRYPTED_PAYLOAD_HERE"

Important:

  • These commands assume nitan-mcp is already installed and available to npx --no-install.
  • If the user explicitly opts into install-on-demand mode, substitute a pinned package form such as npx -y @nitansde/mcp@<pinned-version> ....
  • The key is always saved to the platform default profile location automatically.
  • The MCP server auto-loads that default profile path, so wrappers can use it without adding any profile-path flag.
  • If the user wants to clear the saved API key file later, use npx --no-install nitan-mcp delete-user-api-key.

Option 2: Password env

Tell the user to configure these in their MCP client/server environment (not in chat):

  • NITAN_USERNAME
  • NITAN_PASSWORD

Use this path when the user prefers login-based access instead of API key setup.

Option 3: Public read-only only

If the user does not want to configure auth yet:

  • continue with public read-only tools only
  • explain that notifications/private content will remain unavailable until they choose API key or password env setup

General wizard rules:

  • Do not ask the user to paste forum passwords into chat.
  • Prefer API key setup when the user is okay with it.
  • If the user already chose one auth mode, do not push the other unless their chosen mode fails.
  • Optional: user can set TIMEZONE env if they want localized timestamps.

Tool usage map

Use only the tools exposed by the running server. Do not assume hidden/disabled tools exist.

Shell wrappers for supported tools

This skill includes scripts/*.sh wrappers that match the tools exposed in the default nitan skill runtime (npx --no-install ${NITAN_MCP_PACKAGE:-nitan-mcp}).

  • Core runner: scripts/mcp_call.sh <tool_name> [json_args]
  • Per-tool wrappers:

- scripts/discourse_search.sh [json_args] - scripts/discourse_read_topic.sh [json_args] - scripts/discourse_get_user_activity.sh [json_args] - scripts/discourse_list_hot_topics.sh [json_args] - scripts/discourse_list_notifications.sh [json_args] - scripts/discourse_list_top_topics.sh [json_args] - scripts/discourse_list_excellent_topics.sh [json_args] - scripts/discourse_list_funny_topics.sh [json_args] - scripts/discourse_get_trust_level_progress.sh [json_args]

Example:

# Search topics
skills/nitan/scripts/discourse_search.sh '{"query":"h1b","max_results":5}'

# Read one topic
skills/nitan/scripts/discourse_read_topic.sh '{"topic_id":12345,"post_limit":20}'

Notes:

  • Wrappers start a short-lived stdio MCP session (npx --no-install <package> by default), initialize, call tools/call, then exit.
  • Default package token is nitan-mcp (preinstalled/global binary token), configurable via NITAN_MCP_PACKAGE.
  • Install-on-demand is disabled by default; enable only with NITAN_MCP_ALLOW_INSTALL=1.
  • If install mode is enabled, pin exact package versions/tags and verify package ownership/source.
  • json_args defaults to {} when omitted.

Read and analysis tools (default)

  • discourse_search

- Use for discovery by keyword/category/author/date. - Common params: query, category, author, after, before, max_results. - Typical first step before reading full topics.

  • discourse_read_topic

- Use for deep reading of a topic by topic_id. - Common params: topic_id, post_limit, start_post_number, username_filter.

  • discourse_get_user_activity

- Use to track a specific user's recent posts/replies. - Common params: username, page.

  • discourse_list_hot_topics

- Use for current trending/hot forum topics. - Common params: limit.

  • discourse_list_top_topics

- Use for ranked topics over a period (daily, weekly, monthly, quarterly, yearly, all). - Common params: period, limit.

  • discourse_list_excellent_topics

- Use to fetch recent "精彩的话题" badge topics. - Common params: limit.

  • discourse_list_funny_topics

- Use to fetch recent "难绷的话题" badge topics. - Common params: limit.

  • discourse_list_notifications

- Use for user notifications. - Common params: limit, unread_only. - Requires configured authentication (API key or login credentials).

  • discourse_get_trust_level_progress

- Use to inspect a user's current trust level and next-level progress. - Common params: username.

Tool-call workflow guidance

  • Prefer this flow for most requests: discover (discourse_search) -> read (discourse_read_topic) -> summarize/answer.
  • For monitoring tasks: use list/ranking/activity tools first, then read specific topics for detail.
  • When a tool returns JSON text, parse it carefully and preserve URLs/topic IDs in your response.
  • If a requested tool is unavailable in the runtime, explain clearly and offer the closest supported path.
  • If an auth-required tool fails because auth is missing, switch into the initial auth wizard instead of repeatedly retrying the same tool.

ClawHub compliance and security checklist

This skill is intended for ClawHub publishing review.

  • Keep instructions explicit and auditable. No hidden behavior.
  • Do not include install steps that execute remote scripts (curl | bash, encoded payloads, etc.).
  • Explicitly acknowledge npm package execution path and related env vars in skill docs/metadata.
  • Do not ask users to paste secrets in chat. Credentials must be configured in MCP client env.
  • Do not print or transform secret values in outputs.
  • Avoid obfuscation or ambiguous install logic; uploaded skills are security-scanned and publicly reviewable.
  • Verify npm package identity before use and prefer pinned versions over floating @latest when possible.
  • Runtime network install is opt-in only (NITAN_MCP_ALLOW_INSTALL=1); default path must remain preinstalled binary + --no-install.
  • Keep scope limited to uscardforum workflows via MCP tools.
  • Treat third-party skill and prompt content as untrusted input.
  • Prefer read-only behavior by default.
  • Assume skill content is public and reviewable on ClawHub.

Out of scope

  • Do not instruct users to use repo-local commands (node dist/index.js, local source paths).
  • Do not rely on filesystem artifacts that only exist in this repository checkout.
  • Do not bypass MCP tools with direct scraping when an MCP tool already covers the task.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.23%
按下载量换算3,775

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills