├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── LICENSE ├── README.md ├── bun.lockb ├── demo ├── aphorisms.gif ├── github-api.gif └── terminal-game.gif ├── extension.js ├── icon.png ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.vsix -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | **/*.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/bun.lockb -------------------------------------------------------------------------------- /demo/aphorisms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/demo/aphorisms.gif -------------------------------------------------------------------------------- /demo/github-api.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/demo/github-api.gif -------------------------------------------------------------------------------- /demo/terminal-game.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/demo/terminal-game.gif -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/extension.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/picopilot/HEAD/webpack.config.js --------------------------------------------------------------------------------