Nullstone infrastructure orchestration skill for Claude Code
npx claudepluginhub iou-financial/nullstone-skillClaude Code Skill for Nullstone infrastructure orchestration. Deploy, manage, and monitor applications on AWS via Nullstone CLI.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
A Claude Code skill for deploying and managing applications on AWS via Nullstone infrastructure orchestration platform.
.nullstone/ configuration files# Install from marketplace (when published)
claude plugin install nullstone-skill
Clone this repository:
git clone https://github.com/iou-financial/nullstone-skill.git ~/.claude/plugins/nullstone-skill
The skill will be automatically available in Claude Code.
# macOS
brew install nullstone-io/tap/nullstone
# Linux
curl -sSL https://nullstone.io/install.sh | bash
nullstone configure
This will prompt you to enter your Nullstone API key. Get your API key from your Nullstone Profile.
nullstone set-org <your-org-name>
Once installed, ask Claude to help with Nullstone operations:
For CI/CD and automation, set these environment variables:
| Variable | Description |
|---|---|
NULLSTONE_ORG | Your Nullstone organization name |
NULLSTONE_API_KEY | API key from your Nullstone profile |
NULLSTONE_STACK | Default stack name |
NULLSTONE_ENV | Default environment name |
Place configuration files in your project's .nullstone/ directory:
.nullstone/
config.yml # Base configuration
staging.yml # Staging overrides
production.yml # Production overrides
previews.yml # Preview environment config
See the SKILL.md for detailed configuration examples.
# Build Docker image
docker build -t myapp:latest .
# Push and deploy
nullstone push --app=myapp --source=myapp:latest --stack=primary
nullstone deploy --app=myapp --env=staging --stack=primary -w
nullstone logs --app=myapp --env=staging --stack=primary -t
nullstone exec --app=myapp --env=staging --stack=primary -- rails db:migrate
name: Deploy
on:
push:
branches: [main]
env:
NULLSTONE_ORG: your-org
NULLSTONE_API_KEY: ${{ secrets.NULLSTONE_API_KEY }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nullstone-io/setup-nullstone-action@v0
- name: Build and Push
run: |
docker build -t myapp:latest .
nullstone push --app=myapp --source=myapp:latest
nullstone deploy --app=myapp --env=production --stack=primary -w
This skill contains NO secrets, API keys, or credentials.
~/.nullstone/nullstone configure command handles secure credential storage locallyContributions are welcome! Please read CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details.