Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计提醒

gitlab-stack-creatorGitLab stack creator 搜索

Agent Skill

用于围绕 GitLab 项目、Merge Request、Issue、分支、流水线和代码审查流程提供辅助能力。它适合让 Agent 查询项目状态、整理提交差异、辅助检查合并请求或汇总 CI 结果。使用时需要确认项目权限、访问 token 和目标分支范围;涉及合并、推送、改工单或触发流水线时,应先预览影响并核对团队流程。

总安装

5,582

周安装

247

GitHub Stars

43

下载量

3,504
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gitlab-stack-creator(GitLab stack creator 搜索)
来源仓库:https://github.com/rknall/claude-skills
仓库路径:skills/gitlab-stack-creator
安装命令:
npx skills add https://github.com/rknall/claude-skills --skill 'GitLab Stack Creator'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rknall/claude-skills --skill 'GitLab Stack Creator'

简介

堆栈创建者技能:

  • 与堆栈验证器、秘密管理器、docker-validation、配置生成器集成
  • 在考虑创建完成之前强制执行完整验证
  • 从不使用变通办法 - 总是询问用户指导
  • 正确配置 git(主分支,仅限 ff 合并)
  • 安装验证挂钩和脚本
  • 记录 ./docs/ 中的所有内容
  • 遵循 GitLab 堆栈管理模式创建生产就绪堆栈
  • 仅当所有三个验证器都通过并且没有任何问题并且所有文档都已到位时,堆栈创建才完成。
  • 每周安装量
  • 存储库
  • 克纳尔/克劳德-技能
  • GitHub 之星
  • 43
  • 第一次看到
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克警告

SKILL.md

GitLab Stack Creator

Expert assistance for creating new GitLab stack projects with proper structure, git configuration, validation scripts, and comprehensive documentation.

When to Use This Skill

This skill should be triggered when:

  • Creating a new GitLab stack project
  • Initializing a Docker stack with proper structure
  • Setting up a project with./config,./secrets,./_temporary directories
  • Configuring git repository for stack projects
  • Setting up validation hooks and scripts
  • Bootstrapping a stack project with best practices

Core Principles

This skill follows the GitLab Stack Management patterns:

  1. Everything configured through docker-compose.yml and./config
  2. Secrets stored in./secrets and Docker secrets
  3. docker-entrypoint.sh scripts only when containers don't support native secrets
  4. All container files owned by the user running docker (no root-owned files)
  5. ./_temporary directory for transient setup files (cleaned up after use)
  6. Complete validation before considering stack creation complete

Stack Creation is Complete When

A stack creation is considered COMPLETE only when:

  1. stack-validator skill reports NO issues
  2. secrets-manager skill is satisfied with NO open issues
  3. docker-validation skill is satisfied with NO issues
  4. ✅ All validation scripts execute successfully
  5. ✅ Git repository is properly initialized and configured
  6. ✅ Documentation is complete in./docs

IMPORTANT: NEVER use workarounds. If the direct approach is not working, STOP and ask the user what to do instead.

Stack Creation Workflow

Phase 1: Project Initialization

1.1 Gather Requirements

Ask the user:

  • Project name
  • Primary services needed (nginx, PostgreSQL, Redis, etc.)
  • Remote git repository URL (if any)
  • Environment (development, staging, production)
  • Special requirements

NEVER assume - always ask if information is missing.

1.2 Check Existing Setup

Before creating anything:

  • Check if directory already exists
  • Check if git repository exists
  • Ask user how to proceed if conflicts exist
  • NEVER overwrite without explicit permission

Phase 2: Directory Structure Creation

Create the standard directory structure:

project-name/
├── .git/                       # Git repository
│   ├── hooks/                  # Git hooks (validation scripts)
│   └── config                  # Git configuration
├── config/                     # Service configurations
│   ├── nginx/                  # Nginx configs (if needed)
│   ├── postgres/               # PostgreSQL configs (if needed)
│   └── redis/                  # Redis configs (if needed)
├── secrets/                    # Docker secrets files
│   └── .gitkeep               # Keep directory in git
├── _temporary/                 # Temporary files (gitignored)
├── scripts/                    # Validation and utility scripts
│   ├── pre-commit              # Pre-commit validation hook
│   ├── validate-stack.sh       # Full stack validation
│   └── setup-hooks.sh          # Hook installation script
├── docs/                       # Project documentation
│   ├── decisions/              # Architecture decision records
│   ├── setup.md                # Setup instructions
│   └── services.md             # Service documentation
├── docker-compose.yml          # Main compose file
├── .env.example                # Environment template
├── .gitignore                  # Git exclusions
├── .dockerignore               # Docker exclusions
├── CLAUDE.md                   # Claude Code instructions
└── README.md                   # Project overview

Actions:

  1. Create directories: mkdir -p config secrets _temporary scripts docs/decisions
  2. Create placeholder files: touch secrets/.gitkeep
  3. Set proper permissions: chmod 700 secrets

Phase 3: Git Repository Setup

3.1 Initialize or Connect Repository

If NO git repository exists:

  • Strongly suggest creating a local repository
  • Ask if remote repository should be added
  • Initialize with git init
  • Set main as default branch: git config init.defaultBranch main

If remote repository URL provided:

  • Clone repository: git clone <url> <project-name>
  • Or add remote: git remote add origin <url>
  • Verify remote connection: git remote -v

If setup fails: STOP and ask user for guidance. NEVER attempt workarounds.

3.2 Configure Git

Set required git configuration:

# Set main as branch name
git config init.defaultBranch main

# Set ff-only merge strategy
git config pull.ff only
git config merge.ff only

# Ensure no rebase by default
git config pull.rebase false

# Set user info if not set globally
git config user.name "User Name"
git config user.email "user@example.com"

If configuration fails: Ask user to set configuration manually or provide correct values.

3.3 Create.gitignore

Generate comprehensive.gitignore:

# Secrets - NEVER commit
secrets/*
!secrets/.gitkeep
*.key
*.pem
*.crt
*.p12
*.pfx

# Environment files
.env
.env.local
.env.*.local

# Temporary files
_temporary/
*.tmp
*.temp
.cache/

# Docker
.docker/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db
*.log

# Backup files
*.bak
*.backup

3.4 Create.dockerignore

Generate.dockerignore:

.git
.gitignore
README.md
docs/
_temporary/
*.md
.env
.env.example
secrets/
.vscode/
.idea/

Phase 4: Validation Scripts Setup

4.1 Create scripts/validate-stack.sh

Generate comprehensive validation script that:

  • Calls stack-validator skill
  • Calls secrets-manager skill validation
  • Calls docker-validation skill
  • Reports all issues
  • Returns exit code 0 only if all pass

Template:

#!/usr/bin/env bash
set -euo pipefail

echo "=== GitLab Stack Validation ==="
echo

# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color

ERRORS=0

echo "1. Validating stack structure..."
if ! claude-code-cli run stack-validator; then
    echo -e "${RED}✗ Stack validation failed${NC}"
    ((ERRORS++))
else
    echo -e "${GREEN}✓ Stack validation passed${NC}"
fi
echo

echo "2. Validating secrets configuration..."
if ! claude-code-cli run secrets-manager --validate; then
    echo -e "${RED}✗ Secrets validation failed${NC}"
    ((ERRORS++))
else
    echo -e "${GREEN}✓ Secrets validation passed${NC}"
fi
echo

echo "3. Validating Docker configuration..."
if ! claude-code-cli run docker-validation; then
    echo -e "${RED}✗ Docker validation failed${NC}"
    ((ERRORS++))
else
    echo -e "${GREEN}✓ Docker validation passed${NC}"
fi
echo

if [ $ERRORS -gt 0 ]; then
    echo -e "${RED}Validation failed with $ERRORS error(s)${NC}"
    exit 1
fi

echo -e "${GREEN}All validations passed!${NC}"
exit 0

Make executable: chmod +x scripts/validate-stack.sh

4.2 Create scripts/pre-commit

Generate pre-commit hook:

#!/usr/bin/env bash
set -euo pipefail

echo "Running pre-commit validation..."

# Check for secrets in staged files
if git diff --cached --name-only | grep -qE "secrets/.*[^.gitkeep]|\.env$"; then
    echo "ERROR: Attempting to commit secrets or .env file!"
    echo "Secrets should never be committed to git."
    exit 1
fi

# Check for root-owned files
if find . -user root -not -path "./.git/*" 2>/dev/null | grep -q .; then
    echo "ERROR: Root-owned files detected!"
    echo "All files should be owned by the user running Docker."
    exit 1
fi

# Run quick validation (if available)
if [ -x "./scripts/validate-stack.sh" ]; then
    echo "Running stack validation..."
    if ! ./scripts/validate-stack.sh; then
        echo "ERROR: Stack validation failed!"
        echo "Fix issues before committing, or use 'git commit --no-verify' to skip."
        exit 1
    fi
fi

echo "Pre-commit validation passed!"
exit 0

Make executable: chmod +x scripts/pre-commit

4.3 Create scripts/setup-hooks.sh

Generate hook installation script:

#!/usr/bin/env bash
set -euo pipefail

echo "Installing git hooks..."

# Check if .git directory exists
if [ ! -d ".git" ]; then
    echo "ERROR: Not a git repository!"
    exit 1
fi

# Install pre-commit hook
if [ -f "scripts/pre-commit" ]; then
    cp scripts/pre-commit .git/hooks/pre-commit
    chmod +x .git/hooks/pre-commit
    echo "✓ Installed pre-commit hook"
else
    echo "✗ scripts/pre-commit not found"
    exit 1
fi

echo "Git hooks installed successfully!"

Make executable: chmod +x scripts/setup-hooks.sh

After creating scripts: Run ./scripts/setup-hooks.sh to install hooks.

Phase 5: Docker Configuration

5.1 Create docker-compose.yml Template

Generate initial docker-compose.yml based on user requirements:

IMPORTANT: Use the docker-validation skill to ensure the docker-compose.yml follows all best practices.

Basic template structure:

services:
  # Services will be added based on requirements

  # Example: nginx service
  nginx:
    image: nginx:alpine
    container_name: ${PROJECT_NAME:-project}_nginx
    restart: unless-stopped
    ports:
      - "${NGINX_PORT:-80}:80"
    volumes:
      - ./config/nginx:/etc/nginx/conf.d:ro
    networks:
      - app-network

networks:
  app-network:
    driver: bridge

# Secrets will be defined here when needed
secrets: {}

# Volumes for persistent data
volumes: {}

Actions:

  1. Generate docker-compose.yml with selected services
  2. Use docker-validation skill to validate
  3. Fix any issues reported
  4. NEVER proceed if validation fails - ask user for guidance

5.2 Create.env.example

Generate environment template:

# Project Configuration
PROJECT_NAME=myproject

# Service Ports
NGINX_PORT=80
# Add more as needed

# Database Configuration (if applicable)
# POSTGRES_PORT=5432
# REDIS_PORT=6379

# IMPORTANT: Copy this file to .env and configure for your environment
# .env is gitignored and should contain actual secrets

Phase 6: Configuration Files

Use the config-generator skill to create service-specific configuration files:

Actions:

  1. For each service (nginx, PostgreSQL, Redis), invoke config-generator
  2. Generate configs in./config//
  3. Validate generated configs with config-generator validation
  4. NEVER proceed with invalid configs - ask user for guidance

Example invocation:

  • "Generate nginx production configuration for this stack"
  • "Create PostgreSQL development configuration"
  • "Generate Redis configuration with persistence"

Phase 7: Secrets Management

Use the secrets-manager skill to set up secrets:

Actions:

  1. Identify services that require secrets
  2. Use secrets-manager to create secure secrets
  3. Configure docker-compose.yml with secret references
  4. Generate docker-entrypoint.sh scripts ONLY if containers don't support native Docker secrets
  5. Validate with secrets-manager that NO secrets are in.env or docker-compose.yml environment
  6. NEVER proceed if secrets-manager reports issues - ask user for guidance

Example invocation:

  • "Set up database password secret for PostgreSQL"
  • "Create Redis password secret"
  • "Generate secure random secret for JWT_SECRET"

Phase 8: Documentation Generation

8.1 Create docs/setup.md

Generate setup documentation:

# Setup Instructions

## Prerequisites

- Docker Engine 20.10+
- Docker Compose V2
- Git

## Initial Setup

1. Clone the repository:

git clone <repository-url> cd <project-name>


1. Copy environment template: `cp.env.example.env`
2. Configure environment:
  - Edit.env with your settings
  - NEVER commit.env to git
3. Set up secrets:
  - Follow secrets/README.md for secret creation
  - Use `docker secret create` for each secret
4. Install git hooks: `./scripts/setup-hooks.sh`
5. Validate stack: `./scripts/validate-stack.sh`
6. Start services: `docker compose up -d`

## Validation

Always run validation before deploying:

./scripts/validate-stack.sh


This checks:

- Stack structure
- Secrets configuration
- Docker configuration
- File ownership
- Git exclusions

8.2 Create docs/services.md

Document all services:

# Services Documentation

## Service Overview

| Service | Port | Purpose | Configuration |
|---------|------|---------|---------------|
| nginx | 80 | Web server | ./config/nginx |
| ... | ... | ... | ... |

## Service Details

### Nginx

**Image**: nginx:alpine
**Purpose**: Web server and reverse proxy
**Configuration**: ./config/nginx/
**Secrets**: None
**Volumes**:
- ./config/nginx:/etc/nginx/conf.d:ro

### [Other Services]

Document each service similarly...

8.3 Create docs/decisions/0001-stack-architecture.md

Create architecture decision record:

# 1. Stack Architecture

**Date**: YYYY-MM-DD

## Status

Accepted

## Context

This project uses GitLab Stack Management patterns to ensure:
- Consistent configuration management
- Secure secrets handling
- Proper file ownership
- Validated deployments

## Decision

We will follow these principles:
1. All configuration in docker-compose.yml and ./config
2. All secrets in ./secrets and Docker secrets
3. docker-entrypoint.sh only when necessary
4. No root-owned files
5. ./_temporary for transient files
6. Complete validation before deployment

## Consequences

**Positive**:
- Consistent structure across all stacks
- Automated validation prevents issues
- Secure by default
- Easy to maintain and update

**Negative**:
- Initial setup requires more steps
- Must follow strict patterns
- Validation gates can slow rapid iteration

## Compliance

- stack-validator: Ensures structure compliance
- secrets-manager: Ensures secure secrets
- docker-validation: Ensures Docker best practices

8.4 Create CLAUDE.md

Generate Claude Code instructions for the project:

# CLAUDE.md

This file provides guidance to Claude Code when working with this stack project.

## Project Structure

This is a GitLab Stack project following strict patterns:
- Configuration: docker-compose.yml and ./config/
- Secrets: ./secrets/ and Docker secrets
- Temporary: ./_temporary/ (gitignored)
- Documentation: ./docs/
- Validation: ./scripts/

## Required Skills

This project uses these Claude Code skills:
- **stack-validator**: Validate entire stack structure
- **secrets-manager**: Manage Docker secrets securely
- **docker-validation**: Validate Docker configurations
- **config-generator**: Generate service configs

## Git Configuration

**Branch**: main
**Merge Strategy**: ff-only (fast-forward only)
**Hooks**: Pre-commit validation enabled

## Validation Requirements

BEFORE any git commit, ALL these must pass:
1. stack-validator reports NO issues
2. secrets-manager is satisfied
3. docker-validation is satisfied
4. No root-owned files exist
5. No secrets in .env or docker-compose.yml environment

## Making Changes

### Adding a Service

1. Update docker-compose.yml
2. Use config-generator to create configs
3. Use secrets-manager to handle secrets
4. Run ./scripts/validate-stack.sh
5. Fix ALL issues before committing
6. NEVER commit if validation fails

### Modifying Configuration

1. Edit configuration files
2. Validate with docker-validation
3. Run ./scripts/validate-stack.sh
4. Fix ALL issues before committing

### Working with Secrets

1. Use secrets-manager for ALL secret operations
2. NEVER put secrets in .env or docker-compose.yml
3. Use Docker secrets or ./secrets/ directory
4. Validate with secrets-manager before committing

## Commit Standards

**Pre-commit Hook**: Automatically validates before commit
**Skip Hook**: `git commit --no-verify` (emergency only)
**Commit Messages**: Use conventional commits format

Example:

feat: add Redis service with persistence fix: correct nginx proxy configuration docs: update setup instructions

## Important Rules

1. NEVER commit secrets to git
2. NEVER create root-owned files
3. NEVER skip validation without asking
4. NEVER use workarounds - ask user instead
5. ALWAYS run validation before committing
6. ALWAYS document decisions in ./docs/decisions/
7. ALWAYS use ff-only merge strategy
8. ALWAYS use main as branch name

## Troubleshooting

### Validation Fails

1. Review validation output
2. Use respective skill to investigate (stack-validator, secrets-manager, docker-validation)
3. Fix reported issues
4. Re-run validation
5. Ask user if stuck - NEVER use workarounds

### Git Conflicts

1. NEVER use rebase without explicit permission
2. Use ff-only merges
3. Ask user how to resolve conflicts

### Permission Issues

1. Check file ownership: `find . -user root`
2. Fix with: `sudo chown -R $USER:$USER .`
3. Validate with stack-validator

## Resources

- Stack Validator Documentation
- Secrets Manager Documentation
- Docker Validation Documentation
- Config Generator Documentation

8.5 Create README.md

Generate project README:

# Project Name

Brief description of the project.

## Quick Start

Clone repository

git clone <url> cd <project-name>

Copy environment template

cp .env.example .env

Configure environment (edit .env)

nano .env

Install git hooks

./scripts/setup-hooks.sh

Validate stack

./scripts/validate-stack.sh

Start services

docker compose up -d


## Documentation

- [Setup Instructions](https://github.com/rknall/claude-skills/blob/HEAD/stack-creator/./docs/setup.md)
- [Services Documentation](https://github.com/rknall/claude-skills/blob/HEAD/stack-creator/./docs/services.md)
- [Architecture Decisions](https://github.com/rknall/claude-skills/blob/HEAD/stack-creator/./docs/decisions/)

## Project Structure

. ├── config/ # Service configurations ├── secrets/ # Docker secrets (gitignored except .gitkeep) ├── _temporary/ # Temporary files (gitignored) ├── scripts/ # Validation and utility scripts ├── docs/ # Project documentation └── docker-compose.yml


## Validation

This project uses automated validation:

Full validation

./scripts/validate-stack.sh

Pre-commit validation (automatic)

git commit -m "message"


Validation checks:

- ✓ Stack structure (stack-validator)
- ✓ Secrets configuration (secrets-manager)
- ✓ Docker configuration (docker-validation)
- ✓ File ownership (no root files)
- ✓ Git exclusions (.gitignore)

## Git Workflow

**Branch**: main **Merge Strategy**: ff-only (fast-forward only) **Pre-commit Hook**: Enabled (validates before commit)

## Services

| Service | Port | Purpose |
| --- | --- | --- |
| ... | ... | ... |

See [Services Documentation](https://github.com/rknall/claude-skills/blob/HEAD/stack-creator/./docs/services.md) for details.

## Development

### Prerequisites

- Docker Engine 20.10+
- Docker Compose V2
- Git
- Bash (for scripts)

### Adding a Service

1. Update docker-compose.yml
2. Generate configs: Use config-generator skill
3. Set up secrets: Use secrets-manager skill
4. Validate: `./scripts/validate-stack.sh`
5. Commit changes

### Making Changes

1. Make your changes
2. Run validation: `./scripts/validate-stack.sh`
3. Fix any issues reported
4. Commit (pre-commit hook will validate again)

## Troubleshooting

### Validation Fails

Run individual validators:

- `claude-code-cli run stack-validator`
- `claude-code-cli run secrets-manager --validate`
- `claude-code-cli run docker-validation`

### Permission Issues

Check for root-owned files:

find . -user root -not -path "./.git/*"


Fix ownership:

sudo chown -R $USER:$USER .


## License

[Your License]

## Contact

[Your Contact Info]

Phase 9: Final Validation

9.1 Run Complete Validation

Execute full validation workflow:

# Run validation script
./scripts/validate-stack.sh

This must check:

  1. stack-validator: Full structure validation
  2. secrets-manager: All secrets properly configured
  3. docker-validation: Docker configs valid
  4. File ownership: No root-owned files
  5. Git setup: Proper.gitignore, hooks installed

9.2 Verification Checklist

Manually verify:

  • All directories created
  • Git repository initialized
  • Git configured (main branch, ff-only)
  • .gitignore and.dockerignore created
  • Validation scripts created and executable
  • Git hooks installed
  • docker-compose.yml created and valid
  • .env.example created
  • Service configs generated (if applicable)
  • Secrets properly configured (if applicable)
  • All documentation created
  • CLAUDE.md created
  • README.md created
  • stack-validator: ✓ NO issues
  • secrets-manager: ✓ NO issues
  • docker-validation: ✓ NO issues

9.3 Complete Stack Creation

ONLY mark stack creation as complete when:

  • All validation passes with NO errors
  • All documentation is complete
  • Git repository is properly configured
  • User confirms everything is correct

If ANY validation fails:

  1. Report the issue clearly
  2. Ask user how to proceed
  3. NEVER use workarounds
  4. Fix the issue properly
  5. Re-validate

Phase 10: Initial Commit

Once all validation passes:

# Stage all files
git add .

# Commit (pre-commit hook will validate)
git commit -m "feat: initial stack setup

- Created directory structure
- Configured git with main branch and ff-only
- Set up validation scripts and hooks
- Generated docker-compose.yml
- Created service configurations
- Set up secrets management
- Added comprehensive documentation"

# Push to remote (if configured)
git push -u origin main

If commit fails due to pre-commit hook:

  1. Review validation output
  2. Fix issues
  3. Re-run validation
  4. Try commit again
  5. Ask user if issues persist

Communication Style

When creating a stack:

  • Ask clarifying questions for missing information
  • Explain each phase before executing
  • Report validation results clearly
  • NEVER proceed if validation fails
  • Ask user for guidance when stuck
  • Confirm important decisions before executing
  • Document all decisions in./docs/decisions/
  • Provide clear next steps

Integration with Other Skills

stack-validator

  • Call at the end of Phase 9 (Final Validation)
  • Call in validation scripts
  • Call in pre-commit hooks
  • NEVER proceed if validation fails

secrets-manager

  • Call during Phase 7 (Secrets Management)
  • Use for ALL secret operations
  • Validate secrets configuration
  • NEVER proceed if secrets-manager reports issues

docker-validation

  • Call during Phase 5 (Docker Configuration)
  • Validate docker-compose.yml
  • Validate Dockerfiles (if any)
  • Call in validation scripts
  • NEVER proceed if docker-validation fails

config-generator

  • Call during Phase 6 (Configuration Files)
  • Generate service-specific configs
  • Use for nginx, PostgreSQL, Redis, etc.
  • Validate generated configs

Error Handling

Validation Failure

DO NOT:

  • Try workarounds
  • Skip validation
  • Proceed with errors
  • Assume user wants to continue

DO:

  • Stop immediately
  • Report the issue clearly
  • Show validation output
  • Ask user how to proceed
  • Document the decision

Git Issues

DO NOT:

  • Force push
  • Skip hooks without permission
  • Use rebase without permission
  • Modify git history without permission

DO:

  • Ask user for guidance
  • Explain the issue
  • Provide options
  • Document the solution

Permission Issues

DO NOT:

  • Create root-owned files
  • Use sudo without permission
  • Skip permission checks

DO:

  • Report permission issues
  • Ask user to fix ownership
  • Validate after fixing
  • Document proper ownership

Example Workflows

Workflow 1: Creating a Simple Web Stack

User: "Create a new stack for a web application with nginx"
Assistant: "I'll create a new web stack with nginx. Let me gather some information first."

**Questions**:
1. "What's the project name?"
   User: "mywebapp"

2. "Do you have a remote git repository URL?"
   User: "https://gitlab.com/user/mywebapp.git"

3. "What environment is this for?"
   User: "production"

**Actions**:
1. Create directory structure
2. Initialize git and connect to remote
3. Configure git (main branch, ff-only)
4. Create docker-compose.yml with nginx
5. Use docker-validation to validate
6. Use config-generator to create nginx config
7. Create validation scripts
8. Install git hooks
9. Generate all documentation
10. Run full validation
11. Report status

**Completion**:
"Stack creation complete! All validations passed:
✓ stack-validator: NO issues
✓ secrets-manager: NO issues (no secrets needed)
✓ docker-validation: NO issues

Next steps:
1. Review generated files
2. Customize .env from .env.example
3. Run: docker compose up -d"

Workflow 2: Creating a Full Application Stack

User: "Create a stack with nginx, PostgreSQL, and Redis"
Assistant: "I'll create a full application stack. Let me gather information."

**Questions**:
1. "Project name?" → "myapp"
2. "Remote repository?" → "Yes, https://gitlab.com/user/myapp.git"
3. "Environment?" → "production"

**Actions**:
1. Create directory structure with config/{nginx,postgres,redis}
2. Initialize git, connect remote, configure (main, ff-only)
3. Create docker-compose.yml with all three services
4. Validate with docker-validation
5. Use config-generator for each service:
   - nginx production config
   - PostgreSQL production config
   - Redis production config
6. Use secrets-manager for:
   - PostgreSQL password
   - Redis password
   - Create Docker secrets
7. Create validation scripts and install hooks
8. Generate all documentation
9. Run full validation (stack-validator, secrets-manager, docker-validation)
10. Initial commit

**Completion**:
"Stack creation complete! All validations passed:
✓ stack-validator: NO issues
✓ secrets-manager: All secrets properly configured
✓ docker-validation: NO issues

Services configured:
- nginx (port 80)
- PostgreSQL (port 5432, password in Docker secret)
- Redis (port 6379, password in Docker secret)

Next steps:
1. Review secrets in ./secrets/
2. Customize .env from .env.example
3. Run: docker compose up -d"

Summary

The stack-creator skill:

  1. Integrates with stack-validator, secrets-manager, docker-validation, config-generator
  2. Enforces complete validation before considering creation complete
  3. NEVER uses workarounds - always asks user for guidance
  4. Configures git properly (main branch, ff-only merges)
  5. Installs validation hooks and scripts
  6. Documents everything in./docs/
  7. Creates production-ready stacks following GitLab Stack Management patterns

Stack creation is complete ONLY when all three validators pass with NO issues and all documentation is in place.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

trae

26.67%
按下载量换算935

Claude Code

22.71%
按下载量换算796

Antigravity

19.13%
按下载量换算670

Gemini CLI

11.38%
按下载量换算399

windsurf

8.27%
按下载量换算290

OpenCode

2.96%
按下载量换算104

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills