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

factoriagofactoriago 搜索

Agent Skill

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

总安装

6,952

周安装

284

GitHub Stars

公开资料未说明

下载量

2,227
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install factoriago

简介

AI 驱动的学术论文修改与重新提交助手,支持审稿人意见解析。

  • 适合研究人员在论文返修阶段快速定位问题并生成回应策略。
  • 可通过自然语言指令触发,如“修改论文”或“处理审稿人评论”。
  • 需用户提供原始稿件和审稿意见以进行针对性分析。factoriago 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输出为建议性内容,最终修改应由作者确认后提交。

SKILL.md

name
factoriago
description
|
Supports
(1) onboarding new users to factoriago.com, (2) calling FactoriaGo API to manage

FactoriaGo Skill

FactoriaGo (factoriago.com) is an AI-native LaTeX editor built for academic paper revision. Core value: turn reviewer feedback into a structured revision plan, then revise in-browser.

🔒 Security Note

This skill makes network requests only to editor.factoriago.com (the official FactoriaGo platform) and your chosen AI provider (e.g., Anthropic, OpenAI). No data is sent to any third-party or unknown endpoints. The CLI script (scripts/factoriago-client.js) handles:

  • Session authentication via HTTPS cookie
  • API calls to https://editor.factoriago.com/api/*
  • LLM API key configuration (keys are encrypted server-side)

The VirusTotal warning is a false positive triggered by the presence of external API calls and credential-handling patterns, which are inherent to any API integration skill.

Quick Reference

  • Product URL: https://factoriago.com
  • Landing page: https://factoriago.com
  • App & API base: https://editor.factoriago.com/api
  • API docs: See references/api.md
  • Revision workflow: See references/revision-workflow.md
  • Reviewer response templates: See references/reviewer-response.md
  • CLI client: scripts/factoriago-client.js

⚠️ Prerequisites: LLM API Key Setup

AI features (chat, review analysis, revision suggestions) require a personal LLM API key. Without it, users can only edit files and compile LaTeX — no AI assistance.

Always check API key status before attempting AI operations:

node scripts/factoriago-client.js get-llm-config

If primary_key_saved: false, guide the user through setup FIRST:

API Key Setup Flow

  1. Ask which AI provider they want:

- Anthropic → Claude 3.5 Sonnet (best for writing) - OpenAI → GPT-4o (general purpose) - Google → Gemini 2.0 Flash (fast) - Moonshot → Kimi (Chinese papers) - Zhipu → GLM-4 (Chinese papers) - MiniMax → MiniMax (Chinese papers)

  1. Tell them where to get the key:
ProviderKey URL
Anthropichttps://console.anthropic.com/keys
OpenAIhttps://platform.openai.com/api-keys
Googlehttps://aistudio.google.com/app/apikey
Moonshot (Kimi)https://platform.moonshot.cn/console/api-keys
Zhipu (GLM)https://open.bigmodel.cn/usercenter/apikeys
MiniMaxhttps://platform.minimaxi.com/user-center/basic-information/interface-key
  1. Save the key via API:
   node scripts/factoriago-client.js set-llm-config <provider> <model> <apiKey>

Or guide user to: Settings → AI Model in the FactoriaGo web UI.

  1. Confirm key is saved before proceeding with AI tasks.
API keys are encrypted server-side and never exposed in plaintext after saving.

Workflows

1. New User Onboarding

When user is new to FactoriaGo:

  1. Explain what FactoriaGo does (revise & resubmit workflow, AI co-author, LaTeX editor)
  2. Direct to https://factoriago.com to register (free tier available)
  3. Key differentiators to highlight:

- Bring Your Own AI Model (Claude, GPT-4o, Gemini, Kimi, GLM — use own API keys) - Browser-based LaTeX editing + compilation (no local install needed) - Real-time collaboration + reviewer comment management - 12 languages supported

2. API Integration

Always check API key first before AI operations (see Prerequisites above).

Auth setup:

# Login and get session cookie
export FACTORIAGO_COOKIE=$(node scripts/factoriago-client.js login <email> <password> | grep "Cookie:" | cut -d' ' -f2-)

Common commands:

node scripts/factoriago-client.js list-projects
node scripts/factoriago-client.js list-tasks <projectId>
node scripts/factoriago-client.js analyze-review <projectId> "<reviewer text>"
node scripts/factoriago-client.js chat <projectId> "<question>" [model]
node scripts/factoriago-client.js compile <projectId>

Always ask user for credentials before making API calls. Store cookie in env, never in files.

3. Reviewer Comment Analysis

When user pastes reviewer comments:

  1. Read references/revision-workflow.md for the full workflow
  2. Parse comments into individual concerns
  3. Categorize: Major / Minor / Optional
  4. Map each concern to a revision task
  5. Suggest priority order (major methodological issues first)
  6. Optionally call POST /paper/:id/analyze if user is logged in

4. Reviewer Response Letter

When user needs to write a response letter:

  1. Read references/reviewer-response.md for templates and tone guidelines
  2. For each reviewer comment:

- Determine user's position (agree / partially agree / disagree) - Draft response using appropriate tone template - Cite specific manuscript changes with section/line references

  1. Assemble into full point-by-point letter
  2. Use the AI prompt template in reviewer-response.md for AI-assisted drafting

5. LaTeX Editing

When user wants to edit manuscript:

  1. get-file to read current content
  2. Make targeted edits based on revision tasks
  3. PUT /paper/:paperId/files/:fileId to save
  4. compile to verify no LaTeX errors
  5. Report compilation result to user

Key Facts for Onboarding

  • Free tier: available, limited AI quota
  • Paid plans: more AI calls, larger storage, priority compilation
  • Target users: researchers, PhD students, postdocs doing journal revisions
  • Supported formats: .tex, .bib, .zip (full LaTeX project)
  • No installation needed: fully browser-based
  • Supported AI models: Claude 3.5 Sonnet, GPT-4o, Gemini 2.0 Flash, Kimi, GLM-4, MiniMax

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.75%
按下载量换算2,155

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills