agentsclimarketplace

Vant skill docker

Skill dhaupin/vant/models/public/skills/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.

Install
npx -y skills add dhaupin/vant --skill vant-skill-docker

Assembled 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

CommandWhat
docker buildBuild image
docker runRun container
docker psList containers
docker logsView logs
docker execExecute 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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.