🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

create-atlas-plugin

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-atlas-plugin

Scaffold a new Atlas plugin project

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
8
Maintainers
1
Weekly downloads
 
Created
Source

create-atlas-plugin

Scaffold a new Atlas plugin project.

Usage

bun create atlas-plugin my-plugin

Options

--type <type>       Plugin type (datasource, context, interaction, action, sandbox) [default: datasource]
--scope <scope>     Package scope (e.g. @useatlas) [default: @useatlas]
--defaults, -y      Use all default values (non-interactive)
--help, -h          Show this help message

Examples

# Interactive setup
bun create atlas-plugin my-datasource

# Quick scaffold with defaults
bun create atlas-plugin my-plugin --defaults

# Specific plugin type
bun create atlas-plugin my-context --type context

# Custom scope
bun create atlas-plugin my-plugin --scope @myorg --type action

Generated Files

my-plugin/
├── src/
│   ├── index.ts         # Plugin entry point with typed skeleton
│   └── index.test.ts    # Tests using SDK testing utilities
├── package.json         # npm-ready with correct peer deps
├── tsconfig.json        # Self-contained TypeScript config
├── README.md            # Template with install/configure/usage
├── LICENSE              # Apache-2.0
└── .gitignore

Plugin Types

TypeDescription
datasourceConnect a new database or data source
contextInject additional context into the agent prompt
interactionAdd HTTP routes for external integrations
actionAdd approval-gated write operations
sandboxCustom explore backend for code isolation

License

Apache-2.0

Keywords

atlas

FAQs

Package last updated on 03 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts