-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (56 loc) · 1.01 KB
/
.gitignore
File metadata and controls
66 lines (56 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Ignore everything by default
*
# Framework core
!.gitignore
!index.js
!package.json
!package-lock.json
!human-browser.config.example.js
!LICENSE
# Server + launcher
!lib/
!lib/server.js
!lib/launcher.js
!lib/first-run.js
# Node.js client library
!client/
!client/index.js
!client/page.js
!client/element.js
!client/keyboard.js
!client/cursor.js
# Chrome extension
!extension/
!extension/manifest.json
!extension/service-worker.js
!extension/content-script.js
!extension/icons/
!extension/icons/icon-16.png
!extension/icons/icon-48.png
!extension/icons/icon-128.png
# Protocol documentation
!protocol/
!protocol/PROTOCOL.md
!README.md
!SKILL.md
!gemini-extension.json
# JS CLI
!bin/
!bin/cli.js
!bin/server-daemon.js
# Tests
!test/
!test/*
!test/**
!test/server.js
!test/all-commands.js
!test/fixtures.html
!test/github_button.html
# MCP server (separate package)
!mcp-server/
!mcp-server/package.json
!mcp-server/package-lock.json
!mcp-server/index.js
!mcp-server/lib/
!mcp-server/lib/ws-bridge.js
!mcp-server/README.md