Skip to main content
Run any Skill in Manus
with one click
GitHub repository

ParameciumU

ParameciumU contains 27 collected skills from William2333ZZ, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
27
Stars
5
updated
2026-03-10
Forks
2
Occupation coverage
7 occupation categories · 100% classified
repository explorer

Skills in this repository

agent-creator
network-and-computer-systems-administrators

Create a new monoU agent and connect it to Gateway. Use when the user asks to create/new/spawn an agent (本地或远程). Supports one-command local creation, remote deploy, Windows persistent startup, and skill/persona customization.

2026-03-10
base-skill
software-developers

Minimal terminal coding harness. Use when the user wants coding-agent behavior: read files, run bash commands, edit files with exact replace, write new files; prefer read-before-edit, grep/find/ls for discovery; concise responses with clear paths.

2026-03-09
cron
software-developers

定时任务管理:列出、创建、更新、删除、立即运行与查看状态。调度类型支持 at(一次性时间)、every(固定间隔)、cron(cron 表达式)。不依赖 openclaw;任务持久化在 .first_paramecium/cron/jobs.json。

2026-03-09
memory
software-developers

工作区长期记忆的检索、读取与写入,持久化在 ./.first_paramecium 下。工具:memory_search、memory_get、memory_store、memory_recall、memory_forget、memory_sync。短期/多轮由 state.messages 提供;跨会话用 memory_store 或 write 写入后用 memory_search 回忆。

2026-03-09
base-skill
software-developers

Minimal terminal and file harness. Use when the agent needs to read files, run bash commands, edit or write files; prefer read-before-edit; concise responses with clear paths.

2026-03-03
doc-export-skill
software-developers

Export solution content to a standard Word document (.docx). Use when the user says '输出word文档' / '导出Word' / '生成Word' / '下载Word'. Call generate_word_document with the current solution content, client name, and optional date.

2026-03-03
solution-skill
project-management-specialists

Requirement interpretation and solution document generation. Use when the user uploads or pastes customer requirements (Word/Excel or plain text), or asks to generate/revise a solution document. Always follow the 6-chapter template; support multi-turn iteration from conversation history.

2026-03-03
base-skill
software-developers

Minimal terminal coding harness. Use when the user wants coding-agent behavior: read files, run bash commands, edit files with exact replace, write new files; prefer read-before-edit, grep/find/ls for discovery; concise responses with clear paths.

2026-03-03
web-skill
web-developers

Fetch URL content or search the web. Use web_fetch for a known URL; use web_search when you need to find current information.

2026-03-03
message-skill
software-developers

Send a message to a connected channel (e.g. Feishu). Only available when agent runs with Gateway.

2026-03-02
code-skill
computer-occupations-all-other

代码库发现与导航。提供 grep、glob、list、code_search(自然语言/关键词搜索)、apply_patch(V4A 多文件 diff),与 base_skill 的 read/edit/write 配合使用。

2026-03-01
cron
network-and-computer-systems-administrators

Manage scheduled tasks: list, create, update, delete, and immediately trigger jobs. Supports at (one-shot), every (fixed interval), and cron expression schedules. Two execution modes — agentTurn (LLM agent runs a turn) and systemEvent (no LLM, handled directly by the runtime). Use when the user wants to schedule something at a time or interval, view existing jobs, or manage cron tasks.

2026-03-01
gateway-skill
software-developers

Complete toolset for interacting with the monoU Gateway. Discover topology (online agents, L3 nodes and their capabilities), query per-agent skills and cron jobs, delegate tasks to other agents, invoke L3 node capabilities (browser-node / sandbox-node via node.invoke, analogous to MCP servers), manage sessions, and push messages to connectors (e.g. Feishu). Use when the user asks about: who is online, what agents can do, scheduled tasks, delegating work to another agent, using browser or sandbox capabilities, sending messages to Feishu/channels, or viewing/sending to sessions. Requires Gateway connection.

2026-03-01
knowledge
software-developers

Structured knowledge (vacuole): search, learn, and evolve. Use when (1) answering from docs/FAQ/knowledge-base — call knowledge_search (optional topic) then knowledge_get; (2) user says 'learn this' or 'remember this' — knowledge_learn(text, topic?, point?) or knowledge_add; (3) 'learn from the web' — web_search then knowledge_learn_from_urls; (4) list topics or points — knowledge_list_topics, knowledge_list_points(topic); (5) turn a topic into a dedicated skill — knowledge_skill_create(topic); (6) after bulk edits to KNOWLEDGE.md or knowledge/* — knowledge_sync. Workspace is KNOWLEDGE.md and knowledge/*.md under agent dir; base_skill does raw read/write; this skill adds search, topic/point layout, and FTS5 index.

2026-03-01
memory
software-developers

Long-term memory (vacuole): search, read, store, forget, sync. Use when (1) user asks about past decisions, preferences, people, todos, or dates — call memory_search or memory_recall then memory_get; (2) user says 'remember this' — memory_store(text, target?); (3) mark something to forget — memory_forget(text); (4) after bulk edits to MEMORY.md or memory/* — memory_sync. Workspace: MEMORY.md and memory/YYYY-MM-DD.md under agent dir (default ./.u or MEMORY_WORKSPACE). base_skill does raw read/write; this skill adds search (FTS5, optional hybrid embedding), Store/Forgotten sections, and daily logs.

2026-03-01
node-creator
software-developers

Create, wrap, or start an L3 node and connect it to the Gateway. A node wraps any software or service (browser, sandbox, local tools, APIs, connectors) into a Gateway capability: it connects with role=node, declares capabilities[], and handles node.invoke.request — analogous to an MCP server. Use when the user wants to add browser capability (start browser-node), run sandbox commands (start sandbox-node), wrap a new service as a custom node, or understand how to expose any tool to agents via gateway_node_invoke.

2026-03-01
todo-skill
software-developers

In-session todo list for task breakdown and progress. Use when (1) breaking a complex task into steps — todowrite(items) with status pending; (2) starting an item — todowrite(merge: true, items: [{ id, status: in_progress }]); (3) marking done — todowrite(merge: true, items: [{ id, status: completed }]); (4) checking progress — todoread. Stored in .monou/todos.json per workspace. Aligns with OpenCode-style task management.

2026-03-01
base-skill
software-developers

Minimal terminal coding harness. Use when the user wants coding-agent behavior: read files, run bash commands, edit files with exact replace, write new files; prefer read-before-edit, grep/find/ls for discovery; concise responses with clear paths.

2026-02-28
code-skill
software-developers

代码库发现与导航。提供 grep(内容搜索)、glob(文件名匹配)、list(目录列表),与 base_skill 的 read/edit/write 配合使用。

2026-02-28
agent-creator
software-developers

Create and connect new Paramecium agents. Use when the user wants to spawn a new agent (clone from template, new AGENT_ID), run it locally or prepare for remote deploy. Provides scripts and references for creating agent dirs and connecting to Gateway.

2026-02-28
browser-skill
software-quality-assurance-analysts-and-testers

Discover Browser Node(s), open URLs (browser_fetch), get links (browser_links), click elements (browser_click), fill inputs (browser_fill). Screenshots render as images in chat.

2026-02-28
todo-skill
secretaries-and-administrative-assistants-except-legal-medical-and-executive

会话内待办列表。复杂任务先拆成 todowrite,执行中用 todoread 查看、用 todowrite 更新状态(in_progress/completed),与 OpenCode 任务管理一致。

2026-02-28
gateway-skill
software-developers

委托到其他 Agent:查在线 agent 列表、向指定 agent 的 session 发消息,由对方在该 session 内直接回复。

2026-02-28
gateway-skill
software-developers

委托到其他 Agent:查在线 agent 列表、向指定 agent 的 session 发消息,由对方在该 session 内直接回复。

2026-02-28
knowledge
software-developers

工作区知识库的检索、自学习(topic/知识点 + 从 URL 抓取)与知识转 Skill。topic 为文件夹,其下为知识点(如 股票/K线、高中数学/函数);可 web_search + knowledge_learn_from_urls 自主学习。

2026-02-28
web-skill
web-developers

Fetch URL content or search the web. Use web_fetch for a known URL; use web_search when you need to find current information.

2026-02-26
sessions-skill
software-developers

List sessions, preview session info, or send a message to another session. Requires Gateway.

2026-02-24