← all publishers

imbue-ai

@imbue-ai source repo

173 published skills · page 2 of 2

  1. Data Pipeline Builder · imbue-ai
    Build a simple, fast ingestion/processing tool that turns batches of raw records (JSON/CSV/Parquet dumps, periodic exports, API pulls) into a processed, queryable store, with incremental loading and backfill. Use when asked to ingest, load, index, ETL or process exported data, especially when batches arrive periodically and overlap.
    0
    installs
  2. Manage Scheduled Tasks · imbue-ai
    Query and edit the recurring scheduled jobs that run on this host. Use when you (or the user, via you) want to see what is scheduled, add a new recurring job, change when something runs, or stop a job from running. Recurring jobs that must not be missed run through the run_job.sh runner (any cadence from minutes to weeks, with catch-up after downtime and retry of failed runs); exact-time fire-and-forget schedules are ordinary cron lines. Also covers how the built-in weekly Caretaker job is wired (off by default) and where all the scheduling configuration lives.
    0
    installs
  3. Submit Upstream Changes · imbue-ai bundle
    Push local improvements to shared infrastructure (skills, scripts, CLAUDE.md scaffolding, Dockerfile, system/supervisord.conf) 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.
    0
    installs
  4. Update System Interface · imbue-ai bundle
    Canonical flow for changing the system interface (the web workspace UI at system/apps/system_interface) -- its frontend (the dockview shell, the sidebar, the New Tab launcher) or backend (Flask server, the inventory over the app registry, layout ops) -- and the shared frontend library at system/libs/workspace_ui. Use whenever the user wants to edit, fix, restyle, or add to the workspace UI / dockview.
    0
    installs
  5. Update Installed Template · imbue-ai
    Pull a newer version of a template this mind already adopted from its remote repo and merge it in, reconciling it with this mind's own adaptations. Use when the user wants to update, upgrade, or pull the latest version of an adopted template.
    0
    installs
  6. Update Published Template · imbue-ai bundle
    Create a NEW version of a template you already published (v2, v3, ...) -- re-cut the changes made since the last version on top of the published snapshot and advance the published repo by exactly one clean commit, preserving all of the hand-crafted content in the published repo. Use when the user asks to update, re-publish, revise, or ship a new version of a template they previously published.
    0
    installs
  7. Dealing With The Unexpected · imbue-ai
    Handle unexpected situations where things are not working as expected. Use when you encounter errors, confusing state, or behavior that contradicts your docs and prompts.
    0
    installs
  8. Harden Worker · imbue-ai bundle
    Run the background harden pass for one creation -- crystallize, update, or heal a skill, an app, a service, or the system interface in an isolated worktree, then report back. Invoke when your task file hands you a creation to harden; it names the operation and creation type to compose.
    0
    installs
  9. Assist · imbue-ai
    Diagnose and fix a problem the user is hitting in this workspace, and escalate built-in (non-user) issues to imbue. Invoked as `/assist <description>` by the minds "get help -> have an agent help" flow (also usable directly when the user describes something broken).
    0
    installs
  10. Welcome · imbue-ai
    Greet the user with a short, friendly welcome message when a new project/agent is first started. Invoked automatically as the first message from the minds desktop client.
    0
    installs
  11. Latchkey · imbue-ai
    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.
    0
    installs
  12. Build App · imbue-ai bundle
    Use when you want to create a new app for the user -- a page, dashboard, or tool they can open as a tab. Runs an interactive flow: confirm the look and feel on a cheap throwaway mock first, then build the real app to a usable state, then harden it in the background. Covers scaffolding a new Flask app (canonical path) and the escape hatch for wrapping a pre-existing third-party server.
    0
    installs
  13. Caretaker · imbue-ai
    The single idempotent Caretaker skill, invoked via /caretaker whenever the deterministic weekly check (system/services/caretaker/caretaker_check.sh) wakes the agent. On the very first run it does one look-only scan (no fixes), then introduces itself with what it found and asks whether (and how often) to keep checking; on every later run it does the weekly routine -- greets the user, scans the workspace's service logs for problems, checks basic system health (disk, memory and swap, CPU load, OOM shedding), and checks for finished-but-uncommitted work, all with permission; reviews the previous run, proposes (or, with permission, applies) fixes and commits, and summarizes, always in plain user-experience terms.
    0
    installs
  14. Minds API · imbue-ai
    Use to act on OTHER Minds workspaces on the user's behalf -- list them, create a fresh one, SSH into one, read or export its backups, start/stop/destroy/recover it, or change its settings and service sharing. Reached through the latchkey gateway's minds-api-proxy; most routes need a per-workspace permission grant. For bringing another workspace's content into this one, use the migrate-workspace skill, which drives these routes as part of a much larger flow.
    0
    installs
  15. Update App · imbue-ai
    Use immediately whenever the user asks you to update, change, fix, restyle, extend, restart, or otherwise modify an existing app or background service -- load this BEFORE touching its code. Applies to any change to an app's or service's backend or frontend logic, or how it runs. Covers both apps (a tab the user can open) and background services (host-backup, share-gateway, and other supervisord programs with no tab). This is the front door for app and service edits: it owns the live change loop (apply the change so it takes effect, refresh the user's view, verify) and hands the change to the turn-end hardening flow. For creating a brand-new app use build-app; for the workspace UI itself use update-system-interface.
    0
    installs
  16. Github Sync · imbue-ai
    Enable, check, or disable GitHub sync for this workspace. Enabling creates a dedicated PRIVATE GitHub repo via latchkey, points origin at it, and auto-pushes every commit from every checkout. Workspace data under data/ is NOT synced to GitHub (the restic host backup covers it). Use when the user asks to back up / sync the workspace to GitHub, enable auto-push, or asks about GitHub sync status.
    0
    installs
  17. Launch Task · imbue-ai bundle
    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.
    0
    installs
  18. Update Self · imbue-ai bundle
    Safely pull updates from the upstream template repo (default target is the latest stable release the running Minds app supports). Use when you want to incorporate upstream skills, script fixes, or config improvements. For pushing local improvements back upstream, use the `submit-upstream-changes` skill instead.
    0
    installs
  19. File Sharing · imbue-ai
    Use to read and write files and directories on the user's local filesystem.
    0
    installs
  20. Use Template · imbue-ai
    Adapt an existing template (a published snapshot of apps/features from another mind) into this mind, resolving its requirements interactively. Use when the user gives a template's git URL, or asks to adopt/adapt/reuse a published template.
    0
    installs
  21. Heal Creation · imbue-ai
    Fix an existing creation that errored or delivered a wrong result. This applies to skills, apps, and services. Invoke at turn-end, after you worked around the failure to satisfy the user's request.
    0
    installs
  22. Manage Layout · imbue-ai
    Use when you want to rearrange the workspace dock tabs (open, split, move, focus, close, maximize, reload, rename, delete, stop or start an instance) or inspect the live layout.
    0
    installs
  23. Manage Projects · imbue-ai
    Use when the user's request is about projects/views themselves -- what a project shows, adding or removing a tab from a project, the project's rail shortcuts, or what happens to an instance when it is deleted. Not for ordinary tab arrangement (split/move/focus within a view) -- see manage-layout for that.
    0
    installs
  24. Update Creation · imbue-ai
    Change an existing skill, app, service, or shared script/reference (under .agents/shared/) -- extend it, refactor it, or just verify it still works. Invoke at turn-end when a skill ran but you had to do extra repeatable work by hand, or when you and the user discussed a change to it and applied it live.
    0
    installs
  25. Check App Errors · imbue-ai
    Survey the health of the supervised apps and services on this host and find errors in their logs. Use after building or editing any app/service to confirm it is actually running cleanly, when something seems broken, or when you want a quick read on what (if anything) is currently failing. The Caretaker agent reuses this as its log-scan step.
    0
    installs
  26. Do Something New · imbue-ai
    Use immediately when the user asks you to do something net-new -- a task you haven't done before, no existing skill or app applies, and getting it right will require nontrivial research, exploration, or experimentation. Routes the request to the right interactive flow. 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 skill or app already exists or for pure dev/code-writing work.
    0
    installs
  27. Enable Caretaker · imbue-ai
    Turn on the weekly Caretaker, a BETA feature that is off by default. Use ONLY when the user explicitly asks about the Caretaker or about enabling it -- never suggest, mention, or enable it proactively.
    0
    installs
  28. Find Transcripts · imbue-ai
    Find, read, or search through any chat message, transcript, or conversation content from this host -- whether from an active agent, a past session, a deleted agent, a sub-agent, or a worker. Use this skill any time a user asks about chat histories or you otherwise want to access them. NOTE: this skill only covers Minds agents -- not other services (ChatGPT, claude.ai, etc.).
    0
    installs
  29. Publish Template · imbue-ai bundle
    Publish a clean, shareable snapshot of the apps/features this mind built to a new GitHub repo (an "template" another mind can adapt). Use when the user asks to publish, share, or export what they built as a reusable template.
    0
    installs
  30. Disable Caretaker · imbue-ai
    Switch off the weekly Caretaker. Use when the user asks to turn off, pause, or get rid of the Caretaker.
    0
    installs
  31. Migrate Workspace · imbue-ai bundle
    Bring everything from another (older, broken, or replaced) workspace of the user's into this one -- their apps, skills, documents, data, scheduled automations, and every past chat. Use when the user says anything like 'move my stuff over from my old workspace', 'I made a new mind, bring everything across', 'my old workspace is broken, start me fresh', 'import my other mind', or -- asked from the OLD side -- 'I'd like to move to a new workspace'. Requires the other workspace to be startable, since the transfer runs over a live connection to it.
    0
    installs
  32. Smoke · imbue-ai
    Trivial skill used to validate the orchestrator + agent runner plumbing without paying for a real research task
    0
    installs
  33. Swarm · imbue-ai
    Fan out a task to N independent agents with diverse approaches and collect all results
    0
    installs
  34. Explore · imbue-ai bundle
    Team of explorers that investigate a scientific phenomenon from multiple angles simultaneously
    0
    installs
  35. Edit Theory · imbue-ai bundle
    Apply a custom modification to a theory
    0
    installs
  36. Score Length · imbue-ai
    Score the length of a given theory.
    0
    installs
  37. Support Idea · imbue-ai bundle
    Run experiments and derive mathematical proofs to support a pre-existing theory idea supplied as a latex/pdf/markdown file or argument.
    0
    installs
  38. Write Theory · imbue-ai bundle
    Write a theory to explain a given phenomenon.
    0
    installs
  39. Expand Theory · imbue-ai bundle
    Expand a theory by applying suggested expansion reviews
    0
    installs
  40. Import Theory · imbue-ai bundle
    Import a pre-existing theory from a latex/pdf/markdown file and store in the context database.
    0
    installs
  41. Polish Theory · imbue-ai bundle
    Polish a theory to improve its clarity and make it easier to read. Does not add or remove any content, just rewords and restructures it.
    0
    installs
  42. Refine Theory · imbue-ai bundle
    Refine a theory by sequentially applying all its available reviews
    0
    installs
  43. Review Theory · imbue-ai bundle
    Review all theorems/lemmas in a theory and suggest expansions
    0
    installs
  44. Rank Proposals · imbue-ai bundle
    Compare and rank multiple proposals (experiments, literature searches, and solution candidates), separating solution candidates from other proposals.
    0
    installs
  45. Run Experiment · imbue-ai bundle
    Set up and run a single experiment. Experiments can be arbitrary Python scripts. All experiment execution must go through this skill.
    0
    installs
  46. Score Theories · imbue-ai bundle
    Score the quality of the given theories relative to each other and update all population scores.
    0
    installs
  47. Score Soundness · imbue-ai
    Score the mathematical soundness of a given theory based on its existing falsification reports.
    0
    installs
  48. Execute Proposal · imbue-ai bundle
    Determine the type of proposal given, execute/delegate accordingly, and return the appropriate resulting ID (experiment ID, literature search ID, or solution ID).
    0
    installs
  49. Interpret Result · imbue-ai bundle
    Interpret the results of newly run experiments, literature searches, or solution candidates, and append the findings as new sections to the interpretation log inside the theory folder.
    0
    installs
  50. Rank Experiments · imbue-ai bundle
    Rank the given experiments based on their importance for evaluating theories.
    0
    installs
  51. Rank Predictions · imbue-ai bundle
    Rank different predictions based on how well they predict the results of a given experiment. Returns a ranked list of the theory IDs associated with each prediction with their accuracy ranking (1...n).
    0
    installs
  52. Review Adherence · imbue-ai bundle
    Review a given theory for adherence to guidance, constraints, and explanatory coverage
    0
    installs
  53. Write N Theories · imbue-ai
    Spawn N independent agents that each invoke the write-theory skill, producing N distinct root theories
    0
    installs
  54. Improve Adherence · imbue-ai bundle
    Improve a theory based on adherence review findings
    0
    installs
  55. Literature Review · imbue-ai bundle
    Search arXiv for relevant papers, download papers, and produce a structured literature review
    0
    installs
  56. Refine Hypothesis · imbue-ai bundle
    Attempt to refine a given hypothesis
    0
    installs
  57. Search Literature · imbue-ai bundle
    Run a targeted literature search on specific findings or questions that emerged during theory development
    0
    installs
  58. Streamline Theory · imbue-ai bundle
    Streamline a theory down to its core essence.
    0
    installs
  59. Falsify Hypothesis · imbue-ai bundle
    Attempt to falsify a given hypothesis
    0
    installs
  60. Propose Experiment · imbue-ai bundle
    Design and propose the next step: either a regular data-gathering experiment, literature search, or a concrete solution candidate.
    0
    installs
  61. Suggest Expansions · imbue-ai bundle
    Review an entire theory and suggest concrete areas for expansion
    0
    installs
  62. Summarize Research · imbue-ai bundle
    Summarize the current research status
    0
    installs
  63. Predict Experiments · imbue-ai bundle
    Use the given theory to predict the results of a given set of experiments.
    0
    installs
  64. Rank Explanatory Power · imbue-ai bundle
    Rank different theories based on their explanatory power
    0
    installs
  65. Score Theory Solutions · imbue-ai bundle
    Score and rank solution candidates relative to the research goal, and update parent theory scores.
    0
    installs
  66. Write Different Theory · imbue-ai bundle
    Write a theory taking a *different* approach from the provided ones.
    0
    installs
  67. Summarize Goal Progress · imbue-ai bundle
    Summarize the current goal progress
    0
    installs
  68. Score Guidance Adherence · imbue-ai
    Score how well the given theory adheres to the provided guidance.
    0
    installs
  69. Integrate Interpretations · imbue-ai bundle
    Integrate recent interpretations from the interpretation log into the associated theory.
    0
    installs
  70. Score Theory Local Subscores · imbue-ai bundle
    Score the given theory according to certain per-theory subscore criteria.
    0
    installs
  71. Streamline Theory Variations · imbue-ai bundle
    Streamline a theory down to its core essence, selecting a few different options.
    0
    installs
  72. Blueprint · imbue-ai bundle
    Start a new plan-writing session. Explores the codebase and asks clarifying questions.
    1
    install
  73. Blueprint Generate · imbue-ai bundle
    End the Q&A phase and generate the plan. Use after the blueprint skill has gathered enough context.
    1
    install