Skill with meta
Skill alexngai/skill-tree/scraper/test/fixtures/skill-with-meta
Version control and evolution for AI agent skills — versioned storage, dynamic serving/loadouts, multi-agent git sync, and cross-repo federation.
npx -y skills add alexngai/skill-tree --skill skill-with-metaAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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
Assists with Docker Compose configuration, multi-container setups, and debugging container issues.
SKILL.md
0.9 KB, as published. Nobody here has run it
Docker Compose Helper
Manage multi-container Docker applications with ease.
Common Commands
# Start services
docker-compose up -d
# View logs
docker-compose logs -f service_name
# Rebuild and restart
docker-compose up -d --build
# Stop all services
docker-compose down
# Remove volumes too
docker-compose down -v
Example docker-compose.yml
version: '3.8'
services:
web:
build: .
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgres://db:5432/app
depends_on:
- db
db:
image: postgres:15
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=secret
volumes:
postgres_data: