seed-minimal-test
A minimal smoke-test seed that installs a single 'current-time' skill so your AI agent can tell you what time it is.
What this seed does
seed-minimal-test is the smallest useful seed: it installs one tiny skill onto your machine that, when invoked, tells you the current date and time. Ask your agent "what time is it?" and it reads your system clock and answers — nothing more, nothing less.
It exists primarily as a fast, low-footprint fixture for testing the seed install-and-verify lifecycle end to end. It requires no accounts, no external services, and no special software — just a standard shell. Installation touches a single file and completes in well under a second.
If you're building or debugging a seed installer tool and need a real seed that's trivially cheap to run, this is the one to reach for.
When to use it
- When you're building a seed installer and want the simplest possible real seed to test the full install-and-verify cycle against.
- When you want to confirm your agent's skills directory is set up correctly without committing to a heavy install.
- When you need a fast sanity check that
seed-installis wired up and working end to end. - When you want your AI agent to be able to answer 'what time is it?' with a dedicated, minimal skill.
- When you're writing documentation or tutorials for the seed system and need a safe, throwaway example seed to walk through.
Source
Version history
1 releaseInitial Seed Release.
Dependencies
2 required · 0 optional- SWPOSIX shell (mkdir + cp)required
- StateClaude Code agent host with ~/.claude/skills/ supportrequired
Contributors
1 contributorComments
0 commentsYou need to be signed in with GitHub to comment.
No comments yet — be the first to share how this seed worked for you.
Similar seeds
Installs a personalized joke-and-time skill that greets you by nickname — a minimal seed that exercises sub-seed dependencies and user inputs.
by @jmfdAlso a minimal test seed that installs a single skill to exercise the seed install lifecycle with minimal dependencies.
Run the Hermes AI agent locally in Docker with a browser dashboard, ChatGPT login, and files you can edit directly from your computer.
by @plow-pbcA foundational developer seed for running an AI agent locally, useful for testing agent infrastructure.
Sets up passwordless, multiplexed SSH access from your machine to a named remote host — the reusable access layer for any seed that works remotely.
by @plow-pbcA reusable infrastructure seed designed as a building block for other seeds, similar philosophy of minimal single-purpose installation.
Sets up always-on AI commit review on every machine so code issues are caught and resolved before anything is pushed.
by @swagatpatelA developer-tools seed that automates a specific task, shares the goal of providing a testable agent skill.