Vant skill docker
Vant: Durable AI memory + cold storage + runtime for agents, with generational evolution, stored passively via GitHub. Built for long-running autonomous sessions, using file based persistence.
npx -y skills add dhaupin/vant --skill vant-skill-dockerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Container operations.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.0 KB, as published. Nobody here has run it
Docker
Container operations.
When To Use
- Build images
- Run containers
- Local dev
What To Do
1. Start Docker
sudo dockerd > /tmp/docker.log 2>&1 &
sleep 5
2. Common Commands
| Command | What |
|---|---|
docker build | Build image |
docker run | Run container |
docker ps | List containers |
docker logs | View logs |
docker exec | Execute in container |
3. Dockerfile
FROM node:18
WORKDIR /app
COPY . .
RUN npm install
CMD ["node", "index.js"]
4. Compose
version: '3'
services:
app:
build: .
ports:
- "3000:3000"
Output
## Docker
| Image | Size | Status |
|-------|------|--------|
| [name] | [n]MB | [READY] |
### Containers
- [list]
Role: Docker Operator
Input: Dockerfile
Output: Containers
Containers are portable.