{"id":51022746,"url":"https://github.com/atelierarith/better-pluto-client","last_synced_at":"2026-06-21T17:01:21.542Z","repository":{"id":335472847,"uuid":"1145637877","full_name":"AtelierArith/better-pluto-client","owner":"AtelierArith","description":"Pluto Client for VS Code(-like) editors","archived":false,"fork":false,"pushed_at":"2026-02-07T05:29:40.000Z","size":260,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-07T13:59:57.966Z","etag":null,"topics":["aigenerated","julia","pluto","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AtelierArith.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"terasakisatoshi"}},"created_at":"2026-01-30T03:03:10.000Z","updated_at":"2026-02-07T05:26:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/AtelierArith/better-pluto-client","commit_stats":null,"previous_names":["atelierarith/better-pluto-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AtelierArith/better-pluto-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtelierArith%2Fbetter-pluto-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtelierArith%2Fbetter-pluto-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtelierArith%2Fbetter-pluto-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtelierArith%2Fbetter-pluto-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AtelierArith","download_url":"https://codeload.github.com/AtelierArith/better-pluto-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtelierArith%2Fbetter-pluto-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34618484,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-21T02:00:05.568Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aigenerated","julia","pluto","vscode-extension"],"created_at":"2026-06-21T17:01:16.732Z","updated_at":"2026-06-21T17:01:21.518Z","avatar_url":"https://github.com/AtelierArith.png","language":"TypeScript","funding_links":["https://github.com/sponsors/terasakisatoshi"],"categories":[],"sub_categories":[],"readme":"# BetterPlutoClient\n\nA VS Code extension for editing Pluto.jl notebooks with **full native editor support**.\n\n## Features\n\n- **Native VS Code Notebook**: Uses VS Code's Notebook API for full editor integration\n- **Julia Syntax Highlighting**: Full syntax highlighting in each cell\n- **AI Completion**: Works with GitHub Copilot, Cursor AI (Cmd+K), and other AI tools\n- **Julia LSP Integration**: Autocomplete, hover info, go-to-definition via Julia extension\n- **Reactive Execution**: Powered by Pluto.jl kernel for reactive notebook execution\n- **Standard Editor Features**: Multi-cursor, search/replace, keybindings, etc.\n\n## Requirements\n\n- VS Code or Cursor 1.80.0+\n- Julia installed and in PATH\n- Pluto.jl package installed (`using Pkg; Pkg.add(\"Pluto\")`)\n- Recommended: [Julia extension](https://marketplace.visualstudio.com/items?itemName=julialang.language-julia)\n\n## Installation\n\n### Install from VSIX Package\n\n1. **Build the VSIX package**:\n   ```bash\n   # Install dependencies\n   yarn install\n\n   # Build the extension\n   yarn compile\n\n   npx vsce package\n   ```\n\n2. **Install in VS Code**:\n   ```bash\n   code --install-extension better-pluto-client-0.0.1.vsix\n   ```\n\n3. **Install in Cursor**:\n   ```bash\n   cursor --install-extension better-pluto-client-0.0.1.vsix\n   ```\n\n4. **Reload the editor**: Restart VS Code/Cursor or use `Cmd+Shift+P` → \"Developer: Reload Window\"\n\n### Uninstall\n\n```bash\n# VS Code\ncode --uninstall-extension undefined_publisher.better-pluto-client\n\n# Cursor\ncursor --uninstall-extension undefined_publisher.better-pluto-client\n```\n\n## Usage\n\n### Opening a Pluto Notebook\n\n1. Right-click a `.jl` file in the explorer\n2. Select \"Open as Pluto Notebook\"\n\nOr use the command palette:\n- `Pluto: Open as Pluto Notebook`\n\n### Running Cells\n\n- **Shift+Enter**: Run current cell and move to next\n- **Ctrl+Enter** / **Cmd+Enter**: Run current cell\n- Click the play button next to a cell\n\n### Kernel Commands\n\n- **Pluto: Start Pluto Kernel**: Start the Pluto.jl backend\n- **Pluto: Stop Pluto Kernel**: Stop the kernel\n- **Pluto: Restart Pluto Kernel**: Restart the kernel\n\n## Architecture\n\n```\n┌─────────────────────────────────────┐\n│  VS Code Notebook API               │\n│  ┌───────────────────────────────┐  │\n│  │ Cell 1 (Julia Editor)         │  │  ← Full editor features\n│  │ - Syntax highlighting         │  │  ← AI completion\n│  │ - LSP integration             │  │  ← Julia extension support\n│  └───────────────────────────────┘  │\n│  ┌───────────────────────────────┐  │\n│  │ Cell 2 (Julia Editor)         │  │\n│  └───────────────────────────────┘  │\n└─────────────────────────────────────┘\n            │\n            ▼ WebSocket (MessagePack)\n┌─────────────────────────────────────┐\n│  Pluto.jl Server                    │\n│  - Reactive execution               │\n│  - Dependency tracking              │\n└─────────────────────────────────────┘\n```\n\n## File Format\n\nThis extension reads and writes standard Pluto.jl notebook files (`.jl`), which are valid Julia scripts and can be run directly.\n\n## Known Issues\n\n- First cell execution starts the Pluto kernel (takes ~30-60 seconds on first run)\n\n## Development\n\n### Project Structure\n\n- `src/extension.ts`: extension activation, command registration, renderer messaging\n- `src/PlutoNotebookController.ts`: notebook execution orchestration\n- `src/PlutoServer.ts`: Pluto process / transport orchestration with DI-friendly interfaces\n- `src/pluto-protocol.ts`: protocol decoding and notebook diff processing (pure logic)\n- `src/cell-state-machine.ts`: execution state accumulation and completion rules (pure logic)\n- `src/PlutoNotebookParser.ts`: parse/serialize Pluto `.jl` notebook format\n- `src/PlutoNotebookSerializer.ts`: VS Code `NotebookData` \u003c-\u003e Pluto parser bridge\n- `src/notebook-output-adapter.ts`: notebook output and VS Code API bridge\n- `src/output-utils.ts`: output classification and rendering helpers\n- `src/pluto-toc-utils.ts`: table-of-contents and output structure helpers\n- `src/pluto-renderer.ts`: webview renderer for interactive HTML outputs\n\n### Examples\n\nSample notebooks are under `samples/`:\n\n- `samples/Basic.jl`\n- `samples/PlotsImages.jl`\n- `samples/PlutoTeachingTools.jl`\n\n### Testing\n\nRun the test suite:\n\n```bash\nyarn test\n```\n\nUnit tests live in `src/test/` and cover parser/serializer, protocol decoding, execution state machine, output utils, Pluto server public behavior, and renderer TOC utils.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatelierarith%2Fbetter-pluto-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatelierarith%2Fbetter-pluto-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatelierarith%2Fbetter-pluto-client/lists"}