How this skill is triggered — by the user, by Claude, or both
Slash command
/html-instrumentation:setup-html-nginxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up a static HTML application served by Nginx using Docker.
Set up a static HTML application served by Nginx using Docker.
index.html, CSS, and any static assets).nginx.conf configuration file for serving static content.Dockerfile based on the official nginx image:
FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY html/ /usr/share/nginx/html/
docker build -t html-app .
docker run -p 8080:80 html-app
http://localhost:8080.Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
Guides Payload CMS config (payload.config.ts), collections, fields, hooks, access control, APIs. Debugs validation errors, security, relationships, queries, transactions, hook behavior.
Implements vector databases with Pinecone, Weaviate, Qdrant, Milvus, pgvector for semantic search, RAG, recommendations, and similarity systems. Optimizes embeddings, indexing, and hybrid search.
npx claudepluginhub jek-bao-choo/datadog-agentic-plugins --plugin html-instrumentation