How this skill is triggered — by the user, by Claude, or both
Slash command
/syntek-dev-suite:stack-djangoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Last Updated**: 29/12/2025
Last Updated: 29/12/2025 Version: 1.3.1 Maintained By: Development Team Language: British English (en_GB) Timezone: Europe/London
| Layer | Technology |
|---|---|
| Platform | Raw Docker (Docker Compose) |
| Backend | Python 3.10+, Django 5.x, Wagtail 6.x |
| Server | Gunicorn / Nginx |
| Testing | pytest, pytest-django |
| Task | Command |
|---|---|
| Start environment | docker compose up -d |
| Stop environment | docker compose down |
| View logs | docker compose logs -f web |
| Django manage | docker compose exec web python manage.py <command> |
| Django shell | docker compose exec web python manage.py shell |
| Run tests | docker compose exec web pytest |
| Run specific test | docker compose exec web pytest tests/test_file.py -k test_name |
| Migrations | docker compose exec web python manage.py migrate |
| Make migrations | docker compose exec web python manage.py makemigrations |
| Create superuser | docker compose exec web python manage.py createsuperuser |
| Collect static | docker compose exec web python manage.py collectstatic --noinput |
| Pip install | docker compose exec web pip install <package> |
StreamField for flexible contentblocks.py filesStructBlock for grouped fields{% extends 'base.html' %}{% include %} sparingly - prefer template inheritance{% block %} for overridable sectionsCRITICAL: All Python code must use strict type hints.
from typing import Optional, List
from django.db.models import QuerySet
def get_active_users(limit: Optional[int] = None) -> QuerySet['User']:
"""
Retrieves active users from the database.
Args:
limit: Maximum number of users to return. None returns all.
Returns:
QuerySet[User]: Active user records.
"""
users = User.objects.filter(is_active=True)
if limit:
users = users[:limit]
return users
project/
├── apps/
│ ├── core/ # Shared functionality
│ │ ├── models.py
│ │ ├── services.py # Business logic
│ │ └── utils.py
│ ├── users/ # User management
│ └── content/ # Wagtail content
│ ├── models.py # Page models
│ └── blocks.py # StreamField blocks
├── templates/
│ ├── base.html
│ └── pages/
├── static/
├── tests/
│ ├── conftest.py # pytest fixtures
│ ├── test_models.py
│ └── test_services.py
├── manage.py
├── docker-compose.yml
└── requirements.txt
import pytest
from apps.users.services import UserService
@pytest.fixture
def user_service() -> UserService:
return UserService()
def test_create_user(user_service: UserService, db) -> None:
"""Test user creation with valid data."""
user = user_service.create(
email='[email protected]',
name='Test User'
)
assert user.email == '[email protected]'
assert user.is_active is True
npx claudepluginhub syntek-dev/syntek-dev-suite --plugin syntek-dev-suiteProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.