Agent 365 Extension
This is a VSCode extension development starter.
Features
- Hello World command example
- TypeScript configuration
- ESLint setup
- Debug configuration
Getting Started
Install dependencies:
npm install
Compile the extension:
npm run compile
Press F5 to open a new VSCode window with the extension loaded
Run the command Hello World from the Command Palette (Ctrl+Shift+P or Cmd+Shift+P)
Development
- Run
npm run watch to compile TypeScript in watch mode
- Press F5 to debug the extension
- Make changes to
src/extension.ts and reload the extension window
Structure
src/extension.ts - Main extension entry point
package.json - Extension manifest
tsconfig.json - TypeScript configuration
.vscode/launch.json - Debug configuration
.vscode/tasks.json - Build tasks
Next Steps
- Add more commands in package.json
- Create new features in src/
- Read the VSCode Extension API documentation
| |