aminet-browser
Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching,…
OpenStack Swift object storage service. Provides S3-compatible distributed object storage with containers, ACLs, ring architecture, eventual consistency, large object support (SLO/DLO), tempURL for unauthenticated access, object versioning, and object expiry. Use for deploying,
$ npx -y skills add Tibsfox/gsd-skill-creator --skill swift --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/swiftContext preview
The summary Claude sees to decide when to auto-load this skill.
OpenStack Swift object storage service. Provides S3-compatible distributed object storage with containers, ACLs, ring architecture, eventual consistency, large object support (SLO/DLO), tempURL for unauthenticated access, object versioning, and object expiry. Use for deploying,
name: openstack-swift
description: "OpenStack Swift object storage service. Provides S3-compatible distributed object storage with containers, ACLs, ring architecture, eventual consistency, large object support (SLO/DLO), tempURL for unauthenticated access, object versioning, and object expiry. Use for deploying, configuring, operating, and troubleshooting OpenStack object storage."
user-invocable: true
allowed-tools: Read Grep Glob
metadata:
extensions:
gsd-skill-creator:
version: 1
createdAt: "2026-02-23"
triggers:
intents:
- "swift"
- "object storage"
- "container"
- "s3 compatible"
- "large object"
- "ring"
- "ACL"
- "tempurl"
contexts:
- "deploying openstack object storage"
- "managing swift containers"
- "troubleshooting object storage"
- "configuring s3 compatibility"Swift provides distributed object storage with an HTTP-accessible API. Unlike block storage (Cinder), which provides attached devices, Swift stores objects (files) in containers (buckets) accessible via REST API calls. Swift is S3-compatible when the `s3api` middleware is enabled, making it a drop-in replacement for AWS S3 in many applications.
Swift uses a **ring architecture** to determine where objects are stored. Even in a single-node deployment, understanding rings is important because they control data placement and replication.
**Service components:**
Key settings in `globals.yml`:
# Enable Swift enable_swift: "yes" # Disk configuration for Swift storage # Kolla-Ansible expects dedicated disks or partitions # Format: label:device pairs swift_devices_name: "KOLLA_SWIFT_DATA" # Number of replicas (1 for single-node) swift_default_replication_count: 1
Swift requires dedicated storage devices. For Kolla-Ansible:
# Format and label a disk for Swift parted /dev/sdc mklabel gpt parted /dev/sdc mkpart primary xfs 0% 100% mkfs.xfs -f /dev/sdc1 # Label must match swift_devices_name xfs_admin -L KOLLA_SWIFT_DATA /dev/sdc1 # Alternatively, use a loop device for testing dd if=/dev/zero of=/srv/swift-disk bs=1M count=10240 mkfs.xfs -f /srv/swift-disk # Mount and label for Kolla-Ansible discovery
Kolla-Ansible builds rings during deployment. For single-node with 1 replica:
# Kolla-Ansible handles ring building, but for manual ring management: # Account ring swift-ring-builder account.builder create 10 1 1 swift-ring-builder account.builder add --region 1 --zone 1 \ --ip 10.0.0.1 --port 6202 --device sdc1 --weight 100 swift-ring-builder account.builder rebalance # Container ring (same pattern) swift-ring-builder container.builder create 10 1 1 swift-ring-builder container.builder add --region 1 --zone 1 \ --ip 10.0.0.1 --port 6201 --device sdc1 --weight 100 swift-ring-builder container.builder rebalance # Object ring (same pattern) swift-ring-builder object.builder create 10 1 1 swift-ring-builder object.builder add --region 1 --zone 1 \ --ip 10.0.0.1 --port 6200 --device sdc1 --weight 100 swift-ring-builder object.builder rebalance
# List Swift containers
docker ps --format '{{.Names}}' | grep swift
# Expected containers:
# swift_proxy_server, swift_account_server, swift_container_server,
# swift_object_server, swift_account_reaper, swift_object_expirer,
# swift_rsyncd
# Verify Swift is operational
openstack object store account show
# Should return account info with container count and bytes used
# Check S3 API availability (if s3api middleware is enabled)
# Use AWS CLI or s3cmd with OpenStack credentialsStorage policies define different tiers of storage with different replication counts, erasure coding parameters, or device assignments.
# In swift.conf (through Kolla-Ansible config override) [storage-policy:0] name = standard default = yes # Additional policies for different tiers: # [storage-policy:1] # name = high-durability # (requires separate ring and additional devices)
Swift's `s3api` middleware provides S3-compatible API access:
# In proxy-server.conf pipeline (Kolla-Ansible configures this when enabled) # pipeline = ... s3api s3token keystoneauth ... proxy-server
Using the S3 API:
# Create EC2 credentials for S3 access openstack ec2 credentials create # Use with
An adaptive learning and coprocessor architecture for Claude Code, built as an extension to GSD (open-gsd)
Repo: Tibsfox/gsd-skill-creator
Aminet search and browse: full-text search, category tree navigation, architecture filtering, package detail, and curated collections. Use when searching,…
FS-UAE emulator configuration and launch: hardware profiles, ROM management, WHDLoad integration, config generation, and state snapshots. Use when configuring…
Manages Aminet INDEX infrastructure: fetch, parse, cache, and incremental update of ~84,000-entry package database. Use when managing INDEX data, checking…
Aminet package installation: LhA/LZX extraction, Amiga filesystem mapping, dependency detection, install tracking, and scan gate enforcement. Use when…
Selective Aminet package mirroring: single-package fetch, integrity verification, mirror state tracking, bulk download, and sync detection. Use when…
Multi-layer virus scanning for Aminet packages. Signature-based detection, heuristic hunk analysis, boot block scanning, quarantine management, and scan…