Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
$pwd:
imbue-ai
GitHub creator profile

imbue-ai

Repository-level view of 101 collected skills across 11 GitHub repositories, including approximate occupation coverage.

skills collected
101
repositories
11
occupation fields
4
updated
2026-05-29
repository map

Where the skills live

Top repositories by collected skill count, with their share of this creator catalog and occupation spread.

Showing the top 8 repositories here; full repository list continues below.
repository explorer

Repositories and representative skills

#001
mngr
24 skills37637updated 2026-05-20
24% of creator
minds-dev-workflow
네트워크·컴퓨터 시스템 관리자

End-to-end dev workflow for the minds app stack -- first-time bring-up, every-startup vendor/mngr sync, and the iteration loop against a running Docker agent. Use this when starting or restarting the dev Electron app, or after changing any minds component (mngr, the system interface, the FCT template).

2026-05-20
new-forever-claude-clone
소프트웨어 개발자

Create a new PRIVATE GitHub repo that is a full-history copy of imbue-ai/forever-claude-template's current main branch, clone it to <parent-dir>/<repo-name> (default $HOME/project), and push. Use when the user asks to "spin up a new forever-claude clone", "fork the forever-claude template as a private repo", "make me a new private copy of forever-claude-template", or similar.

2026-05-07
release-minds
소프트웨어 개발자

Cut a new "production" release of the minds app. Pushes a release branch in the mngr clone at ~/project/minds_prod, syncs vendor/mngr in ~/project/forever-claude-template to match, pushes the same-named branch there, and merges the release branch into FCT main. Use when the user asks to "release a new version of minds", "cut a minds release", "update the vendored mngr in forever-claude-template to track <branch>", or anything of that shape.

2026-04-20
find-agent
소프트웨어 개발자

Resolve an agent name or description to an exact mngr agent name. Used by other skills that target agents.

2026-04-09
message-agent
소프트웨어 개발자

Send a message to another mngr agent. Use when you need to communicate with a peer agent.

2026-04-09
wait-for-agent
소프트웨어 개발자

Wait for another agent to enter WAITING state, then execute follow-up instructions

2026-04-09
sync-tutorial-to-e2e-tests
소프트웨어 품질 보증 분석가·테스터

Match tutorial script blocks to e2e pytest functions and add missing tests

2026-04-08
writing-ratchet-tests
소프트웨어 품질 보증 분석가·테스터

Write ratchet tests to prevent accumulation of code anti-patterns. Use when asked to create a "ratchet test" for tracking and preventing specific code patterns (e.g., TODO comments, inline imports, broad exception handling).

2026-04-05
Showing top 8 of 24 collected skills in this repository.
#002
simple_mind
23 skills10updated 2026-03-27
23% of creator
submit-mngr-bug-report
소프트웨어 개발자

Submit a bug report to libraries within the `mngr` project (eg, `mngr`, its plugins, `minds`, etc). Use to report bugs you encounter while running that seem to be issues with the `mngr` code itself, rather than with your own code or configuration.

2026-03-27
debugging-mngr-tasks
소프트웨어 개발자

Run commands to explore the current state of mngr and any relevant running agents. Use this skill when you need to debug issues with mngr tasks, or understand what tasks are currently running and their states.

2026-03-27
handle-mngr-agent-states
소프트웨어 개발자

Handle events from the mngr/agent_states source about sub-agent state transitions (finished, waiting, done, etc). You **MUST** use this skill (and *carefully follow the process in this doc*) whenever you receive a message from the "mngr/agent_states" source!

2026-03-27
cleanup-historical-data
네트워크·컴퓨터 시스템 관리자

Clean up old agents, their output directories, and other historical data. Use during nightly cleanup or when the system has accumulated stale data.

2026-03-27
dealing-with-the-unexpected
소프트웨어 개발자

Handle unexpected situations where the Minds system does not appear to be working as expected. Use when you encounter behavior that seems to contradict what your docs and prompts and skills say should happen, or when something seems broken and you are unsure how to proceed.

2026-03-27
delegate-task-to-agent
프로젝트 관리 전문가소프트웨어 개발자

Create a sub-agent to perform a task. Use when you need to delegate work to another agent, for example, a working agent (for actually accomplishing some task) or a verifying agent (for deciding what to do about the output of a working agent).

2026-03-27
handle-messages
소프트웨어 개발자

Handle events from the messages source about user or assistant messages in conversations. You **MUST** use this skill (and *carefully follow the process in this doc*) whenever you receive a message from the "messages" source!

2026-03-27
handle-mind-idle
소프트웨어 개발자

Handle "idle" events for periodic housekeeping and proactive work. You **MUST** use this skill (and *carefully follow the process in this doc*) whenever you receive a message from the "mind/idle" source!

2026-03-27
Showing top 8 of 23 collected skills in this repository.
#003
code-guardian
19 skills60updated 2026-05-26
19% of creator
Showing top 8 of 19 collected skills in this repository.
#004
forever-claude-template
19 skills31updated 2026-05-29
19% of creator
do-something-new
경영 분석가

Use immediately when the user asks you to do something net-new -- a task you haven't done before, no existing skill applies, and getting it right will require nontrivial research, exploration, or experimentation. When doing this, give a very short confirmation message to the user's request, then load this immediately before responding further. Your confirmation message shouldn't mention loading the skill. Skip when an applicable single skill already exists or for pure dev/code-writing work.

2026-05-29
build-web-service
소프트웨어 개발자

Use when you want to create a new web view for the user. Covers scaffolding a new FastAPI service (canonical path) and the escape hatch for wrapping a pre-existing third-party server, plus diagnostic references when things misbehave.

2026-05-28
launch-task
소프트웨어 개발자

Create a sub-agent to perform a larger task. Use when work is large enough to warrant a separate context, involves multi-file changes, or benefits from isolation.

2026-05-28
latchkey
소프트웨어 개발자

Use whenever you want to use latchkey commands or interact with third-party or self-hosted services (Slack, Google Workspace, Dropbox, GitHub, Linear, Coolify...) using their HTTP APIs on the user's behalf.

2026-05-27
file-sharing
소프트웨어 개발자

Use to read and write files and directories on the user's local filesystem.

2026-05-25
submit-upstream-changes
소프트웨어 개발자

Push local improvements to shared infrastructure (skills, scripts, CLAUDE.md scaffolding, Dockerfile, services.toml) back to the parent template repo so other agents derived from the template benefit. Opens a separate per-feature PR per logical fix; never pushes directly to upstream `main`. Do not push agent-specific content (PURPOSE.md, memory, runtime state). For pulling updates from upstream, use the `update-self` skill instead.

2026-05-11
update-skill
소프트웨어 개발자

Extend, refactor, or verify a crystallized skill under `.agents/skills/`, or a shared script or reference under `.agents/shared/` that other skills consume. Invoke at turn-end when you had to do additional repeatable work around the artifact (absorb flow), or when you and the user discussed a change and you applied it live (verify flow).

2026-05-08
heal-skill-worker
소프트웨어 개발자

Repair a failing skill. Invoke when your task file asks you to heal a specific skill by pointing at its incident transcript.

2026-05-07
Showing top 8 of 19 collected skills in this repository.
#005
bouncer
5 skills34734updated 2026-04-10
5.0% of creator
#006
offload
3 skills1535updated 2026-05-11
3.0% of creator
#007
latchkey
2 skills1144updated 2026-03-08
2.0% of creator
저장소 11개 중 11개 표시
모든 저장소를 표시했습니다
imbue-ai GitHub Skills | SkillsMP