Couldn't find any Documentation on how to use Snapcode using Claude code, Can someone help ?
Hi Paul - This is what we have in documentation: SnapCode is a conversational, developer-oriented interface for building, deploying, and running SnapLogic pipelines using plain English β powered by Claude Code (by Anthropic). It was introduced in the July 2026 release. Think of it as a code-first complement to SnapLogic Designer β instead of dragging Snaps onto a canvas, you describe what you want and SnapCode handles the rest. βοΈ Prerequisites Before installing SnapCode, you'll need: Requirement Details Docker Desktop Installed and running Git To clone the SnapCode repository GitHub Account With a classic Personal Access Token (PAT) with read:packages scope Claude Code Account An Anthropic subscription (or AWS Bedrock as an alternative) SnapLogic Credentials Platform URL, API username (email), and API password β οΈ Note: SSO and MFA authentication are not currently supported. π οΈ Installation SnapCode supports three setup environments: 1. VS Code Dev Container β Best for macOS/Linux users working in VS Code 2. Terminal / Docker β Best for Windows users or anyone preferring a terminal 3. Local no-Docker mode β Via a setup script Basic Steps: 1. Clone the SnapCode repository 2. Create your credentials file by copying .env.example to .env and filling in your SnapLogic (and optionally AWS) credentials 3. Run the installer for your environment: macOS/Linux: ./install.sh docker or ./install.sh vscode Windows: .\install.cmd docker or .\install.cmd vscode 4. Start SnapCode by running claude from the sl-procode directory 5. Type /mcp to confirm the SnapCode MCP servers are connected π¬ How to Use SnapCode Once running, simply describe your pipeline in plain English: Build a pipeline that reads customer orders from Salesforce, filters cancelled ones, and writes the results to Snowflake SnapCode will automatically: 1. πDiscover Snaps β Looks up correct Snap names and parameters 2. πGenerate a .py source file β Written in SLPy (readable Python-like format) 3. πTranslate to .slp β Converts to SnapLogic's native JSON format 4. π§ͺRun a local test β Validates transformation logic locally 5. πDeploy to your org β Uploads to your SnapLogic environment 6. β Validate on the platform β Equivalent to clicking Validate in Designer π File Types Extension Description .py SLPy pipeline source β your editable source of truth .slp SnapLogic's native JSON format (auto-generated) .expr Reusable expression libraries β οΈ Known Limitations Limitation Details Connection accounts Cannot create/configure accounts (Salesforce, Snowflake, etc.) β must be set up manually in Designer SSO/MFA Not supported for authentication Downloading existing pipelines Cannot pull pipelines already on the platform (export manually from Designer first) Execution history Can only show status of the run it just triggered Session state Environment/project/Snaplex preferences reset each new session Getting Started - docs.snaplogic.com/snapcode/snapcode-about.html
