Source profileQuality 73/100

xuzhougeng/wisp-science/skills/agent-infini/SKILL.md

agent-infini

Use the InfiniSynapse CLI (`agent_infini`) for multi-turn AI data-analysis tasks, database/RAG context, and task workspace files. Use when the user mentions InfiniSynapse, agent_infini, database or RAG analysis, or asks to delegate analysis through InfiniSynapse.

Source repository stars
560
Declared platforms
0
Static risk flags
2
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

agentinfini talks to the InfiniSynapse backend REST API. Use it for database-backed analysis, RAG-backed analysis, multi-turn task conversations, and task workspace files.

Best for

  • Use when the user mentions InfiniSynapse, agent_infini, database or RAG analysis, or asks to delegate analysis through InfiniSynapse.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/xuzhougeng/wisp-science --skill "skills/agent-infini"
Safe inspection promptEditorial

Inspect the Agent Skill "agent-infini" from https://github.com/xuzhougeng/wisp-science/blob/95d2c13d1665d46a388b5bdc998dcce0d5ec2eee/skills/agent-infini/SKILL.md at commit 95d2c13d1665d46a388b5bdc998dcce0d5ec2eee. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Credential setup

    wisp-science stores the InfiniSynapse API key in Settings - Credentials and initializes the CLI with:

    wisp-science stores the InfiniSynapse API key in Settings - Credentials and initializes the CLI with:If the CLI is missing, install it:Do not print API keys or dump config files. If authentication fails, ask the user to update the InfiniSynapse API key in Settings - Credentials or rerun agentinfini init.
  2. 02

    Recommended workflow

    1. Check the CLI: agentinfini version 2. List resources: agentinfini db ls and agentinfini rag ls 3. Check enabled context: agentinfini task context 4. Enable needed context: agentinfini db enable or agentinfini rag enable 5. Start a task: agentinfini task new "..." 6. Continue…

    Check the CLI: agentinfini versionList resources: agentinfini db ls and agentinfini rag lsCheck enabled context: agentinfini task context
  3. 03

    Commands

    --json: force JSON output

    --json: force JSON output--table: force table output for list commands--api-key : override configured API key for this call
  4. 04

    Output and errors

    Token expired: update Settings - Credentials or rerun agentinfini init

    Token expired: update Settings - Credentials or rerun agentinfini initServer unreachable: check network and --serverTask not found: run agentinfini task ls

Permission review

Static risk signals and limitations

Network access

medium · line 23

The documentation includes network, browsing, or remote request actions.

irm https://infinisynapse.cn/cli-install/install.ps1 | iex

Network access

medium · line 27

The documentation includes network, browsing, or remote request actions.

curl -fsSL https://infinisynapse.cn/cli-install/install.sh | bash

Reads files

low · line 40

The documentation asks the agent to read local files, directories, or repositories.

Inspect outputs: `agent_infini task file <taskId>`, `preview`, or `download`

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score73/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars560SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
xuzhougeng/wisp-science
Skill path
skills/agent-infini/SKILL.md
Commit
95d2c13d1665d46a388b5bdc998dcce0d5ec2eee
License
AGPL-3.0
Collected
2026-07-28
Default branch
main
View the original SKILL.md

agent_infini

agent_infini talks to the InfiniSynapse backend REST API. Use it for database-backed analysis, RAG-backed analysis, multi-turn task conversations, and task workspace files.

Default binary locations:

  • Linux/macOS: ~/.infini/bin/agent_infini
  • Windows: %USERPROFILE%\.infini\bin\agent_infini.exe

If agent_infini is not on PATH, call the full path.

Credential setup

wisp-science stores the InfiniSynapse API key in Settings -> Credentials and initializes the CLI with:

agent_infini init --api-key "sk-xxx"

If the CLI is missing, install it:

irm https://infinisynapse.cn/cli-install/install.ps1 | iex
curl -fsSL https://infinisynapse.cn/cli-install/install.sh | bash

Do not print API keys or dump config files. If authentication fails, ask the user to update the InfiniSynapse API key in Settings -> Credentials or rerun agent_infini init.

Recommended workflow

  1. Check the CLI: agent_infini version
  2. List resources: agent_infini db ls and agent_infini rag ls
  3. Check enabled context: agent_infini task context
  4. Enable needed context: agent_infini db enable <id> or agent_infini rag enable <id>
  5. Start a task: agent_infini task new "..."
  6. Continue the same task: agent_infini task ask <taskId> "..."
  7. Inspect outputs: agent_infini task file <taskId>, preview, or download

Commands

agent_infini task new "Analyze user growth trend"
agent_infini task ask <taskId> "Show it as a bar chart"
agent_infini task ls [--page N] [--page-size N] [--search Q]
agent_infini task show <taskId>
agent_infini task context
agent_infini task cancel <taskId>
agent_infini task rm <id1> [id2 ...]
agent_infini task file <taskId>
agent_infini task preview <taskId> <fileName>
agent_infini task download <taskId> <fileName> [-o dir]
agent_infini db ls [--name N] [--type T] [--enabled] [--disabled]
agent_infini db enable <id> [id...]
agent_infini db disable <id> [id...]
agent_infini rag ls [--keyword K] [--enabled] [--disabled]
agent_infini rag enable <id> [id...]
agent_infini rag disable <id> [id...]

Useful global flags:

  • --json: force JSON output
  • --table: force table output for list commands
  • --api-key <key>: override configured API key for this call
  • --server <url>: override server address
  • --console <url>: override Console API URL
  • --prefer-language <lang>: en, zh_CN, ar, ja, ko, ru

Output and errors

Default output is JSON:

{"success": true, "data": {}}
{"success": false, "error": "error message"}

Common fixes:

  • Token expired: update Settings -> Credentials or rerun agent_infini init
  • Server unreachable: check network and --server
  • Task not found: run agent_infini task ls
  • No enabled resources: run agent_infini task context, then enable DBs/RAGs

Alternatives

Compare before choosing