suse-knowledge-patch
This skill should be used when working with SUSE Linux (SLES 16+), openSUSE Leap 15.6+, or openSUSE Tumbleweed — including Agama installer, SELinux, NetworkManager migration from wicked, /usr-merge system defaults, Cockpit administration, or SUSE 16 component removals. Triggers on SUSE, SLES, openSUSE, Leap, Tumbleweed.
What this skill does
# SUSE 16+ Knowledge Patch Claude's baseline covers SLES 15 SP5, openSUSE Leap 15.5, and Tumbleweed through mid-2024. This skill provides changes from openSUSE Leap 15.6 (June 2024) and the SUSE 16.0 release (SLES Nov 2025, Leap Oct 2025). **Key context**: openSUSE Leap 16.0 and SUSE Linux Enterprise 16.0 share the same codebase (source and binary identical). Nearly all 16.0 changes below apply to both distributions. **Rebranding**: "SUSE Linux Enterprise Server" is now "SUSE Linux". Minor releases (16.0, 16.1, ...) replace service packs. ## Breaking Changes Quick Reference | What Changed | Old (15.x) | New (16.0) | |--------------|------------|------------| | Installer | YaST / AutoYaST | Agama (web UI + CLI + HTTP API) | | Security framework | AppArmor | SELinux (enforcing, 400+ modules) | | Network stack | wicked | NetworkManager only | | Config locations | Mixed `/etc` | Defaults in `/usr`; `/etc` for overrides only | | `/tmp` | Persistent on disk | tmpfs (RAM-backed, cleared on reboot) | | SSH root login | Password allowed | Password disabled; key-only | | User groups | Shared `users` group | Per-user primary groups | | Cgroups | v1 + v2 | v2 only | | Hypervisor | Xen + KVM | KVM only | | Display server | Xorg + Wayland | Wayland only (XWayland for compat) | | Init system | systemd + SysV compat | systemd only (no SysV scripts) | | Python | 3.6/3.11 | 3.13 | | CPU minimum | x86-64 | x86-64-v2 | | DHCP server | ISC DHCP | Kea DHCP | | Name service | NIS available | NIS removed; LDAP | | sudo behavior | Target user's password | Own password (wheel group) | | Zypper repos | Modules + pool/update channels | Single repo per minor release | | Remote desktop | VNC | GNOME Remote Desktop (RDP) | | GUI toolkits | GTK2, Qt5, wxWidgets | GTK3+/GTK4, Qt6 only | | Audio (Leap) | PulseAudio | PipeWire | ## Agama Installer (Replaces YaST) YaST and AutoYaST are fully removed. Agama provides: - **Web UI** for interactive installs - **CLI** (`agama`) for scripted installs - **HTTP API** for automation - **Profiles** (JSON/Jsonnet) replace AutoYaST XML for unattended installs ```bash # Unattended install with Agama profile agama profile import profile.json agama install # Profiles are additive — layer multiple profiles agama profile import base.json agama profile import site-specific.json agama install ``` For remote management, use **Cockpit** (replaces YaST remote modules). For configuration management, use **Salt** or **Ansible**. See [references/installer-and-management.md](references/installer-and-management.md) for details. ## SELinux (Replaces AppArmor) SELinux is enforcing by default with policies for 400+ modules. AppArmor is no longer the default. ```bash # Check status sestatus getenforce # returns "Enforcing" # Temporarily set to permissive (for debugging) setenforce 0 # View/manage booleans getsebool -a setsebool -P httpd_can_network_connect on # Troubleshoot denials ausearch -m AVC -ts recent audit2allow -a # generate policy from denials ``` **openSUSE note**: AppArmor cannot be selected during install but can be enabled post-install. AppArmor updated from 3.1 to 4.1 (fine-grained network rules by IP/port in 4.0, `priority=<number>` rule prefix in 4.1). See [references/security-and-networking.md](references/security-and-networking.md) for details. ## NetworkManager Only (wicked Removed) `wicked` is removed. NetworkManager is the sole network stack. Interface names use systemd predictable naming. ```bash # Configure network via CLI nmcli connection show nmcli connection add type ethernet con-name eth0 ifname enp0s3 ipv4.method manual ipv4.addresses 192.168.1.10/24 # For complex naming, use systemd.link # /etc/systemd/network/10-custom.link ``` See [references/security-and-networking.md](references/security-and-networking.md) for networking details. ## System Defaults Moved to /usr Default configs now live in `/usr`; `/etc` is for admin overrides only. ```bash # Customize systemd settings — create drop-in snippets mkdir -p /etc/systemd/system/myservice.service.d/ cat >/etc/systemd/system/myservice.service.d/override.conf <<EOF [Service] LimitNOFILE=65536 EOF # Restore a default: remove the /etc override rm /etc/systemd/system/myservice.service.d/override.conf ``` See [references/system-defaults.md](references/system-defaults.md) for full details. ## SSH Root Password Login Disabled New installs disable password-based SSH for root. If no SSH key is provided during install, sshd won't be enabled. ```bash # Restore password login (not recommended) zypper install openssh-server-config-rootlogin ``` ## /tmp Is Now tmpfs `/tmp` uses tmpfs (RAM-backed), cleared on every reboot. Applications writing persistent temporary data must use `/var/cache`, `/var/tmp`, or another persistent location. ## sudo: Wheel Group and Auth Changes The first user created by the installer is added to the `wheel` group. The `sudo-policy-wheel-auth-self` package (installed by default) changes sudo behavior: - Users in `wheel` group: prompted for **their own** password (not root's) - Users NOT in `wheel`: prompted for root password This replaces the 15.x behavior where `sudo` always prompted for the target user's password. ## /etc/hostname No Longer Strips FQDN Previously, if a FQDN was stored in `/etc/hostname`, the domain part was silently stripped. In 16.0, the name is applied as-is. Storing a FQDN is discouraged (non-RFC-compliant); use DNS or `/etc/hosts` for FQDN resolution. ## No Zypper Modules or Split Repos The module system (basesystem, server-apps, development, etc.) is gone. No separate `pool`/`update` channels. Minor releases (16.1, 16.2) get separate repositories. ## Key Version Changes | Component | Version | Notes | |-----------|---------|-------| | Python | 3.13 | `/usr/bin/python3` ��� may bump in minor releases | | Kernel compiler | gcc 13 | Install `gcc13`, invoke as `gcc-13` for module builds | | CPU requirement | x86-64-v2 | QEMU needs `-cpu host` or v2-capable model | | Cgroups | v2 only | v1 no longer available | ## mountfd API in util-linux `mount` uses the new kernel mountfd API. For read-only mounts where you need the physical layer read-write: ```bash mount -oro=vfs # instead of: mount -oro ``` ## Per-User Primary Groups `USERGROUPS_ENAB` is enabled: each new user gets their own primary group instead of the shared `users` group. Scripts relying on `@users` in sudoers or similar need updating. ## Major Removals | Removed | Replacement | Notes | |---------|-------------|-------| | YaST / AutoYaST | Agama, Cockpit, Salt/Ansible | Full removal | | wicked | NetworkManager | Sole network stack | | AppArmor (default) | SELinux (enforcing) | 400+ policy modules | | Xen hypervisor | KVM | HVM/PVH guests still work | | Xorg | Wayland + XWayland | X11 apps via XWayland | | SysV init scripts | systemd units | `rc<service>` shortcuts removed | | NIS (`ypserv`) | LDAP | Full removal | | ISC DHCP server | Kea DHCP | | | 32-bit support | -- | `ia32_emulation` kernel param on x86_64 | | `/etc/services` | -- | Dummy file, being phased out | | `libnsl.so.1` | -- | `libnsl-stub1` temporary workaround | | `nscd` | -- | Removed | | `crun` | `runc` | | | `dovecot` 2.3 | 2.4 | Incompatible config format, manual migration | | VNC server | GNOME Remote Desktop (RDP) | | | GTK2, Qt5, wxWidgets | GTK3+/GTK4, Qt6 | Desktop toolkit migration required | | `sapconf` | `saptune` | SLES only | See [references/removals-and-migrations.md](references/removals-and-migrations.md) for migration guidance. ## SLES-Specific Notes - **Kdump**: Configure via `kdumptool` and `/etc/sysconfig/kdump`. NOT enabled by default in 16.0 (fix planned for 16.1). See [references/installer-and-management.md](references/installer-and-management.md). - **`sapconf` removed**: Use `saptune` for SAP tuning. - **Rebranding**: "SUSE Linux Enterprise Server" is now "SUSE Linux". ## openSUSE-Specific Notes ### PipeWire Replaces PulseAudio PipeWire is the defau
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.