@thacio/auditaria 0.30.11 → 0.30.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/README.md +14 -10
  2. package/bundle/docs/admin/enterprise-controls.md +115 -0
  3. package/bundle/docs/changelogs/index.md +20 -1
  4. package/bundle/docs/changelogs/latest.md +359 -293
  5. package/bundle/docs/changelogs/preview.md +296 -349
  6. package/bundle/docs/cli/checkpointing.md +2 -3
  7. package/bundle/docs/cli/cli-reference.md +4 -5
  8. package/bundle/docs/cli/commands.md +376 -650
  9. package/bundle/docs/cli/custom-commands.md +3 -0
  10. package/bundle/docs/cli/enterprise.md +1 -1
  11. package/bundle/docs/cli/gemini-md.md +20 -12
  12. package/bundle/docs/cli/headless.md +34 -372
  13. package/bundle/docs/cli/keyboard-shortcuts.md +36 -35
  14. package/bundle/docs/cli/plan-mode.md +5 -1
  15. package/bundle/docs/cli/rewind.md +11 -11
  16. package/bundle/docs/cli/session-management.md +61 -44
  17. package/bundle/docs/cli/settings.md +10 -5
  18. package/bundle/docs/cli/skills.md +15 -8
  19. package/bundle/docs/cli/themes.md +85 -51
  20. package/bundle/docs/cli/tutorials/automation.md +187 -0
  21. package/bundle/docs/cli/tutorials/file-management.md +142 -0
  22. package/bundle/docs/cli/tutorials/mcp-setup.md +105 -0
  23. package/bundle/docs/cli/tutorials/memory-management.md +126 -0
  24. package/bundle/docs/cli/tutorials/session-management.md +105 -0
  25. package/bundle/docs/cli/tutorials/shell-commands.md +107 -0
  26. package/bundle/docs/cli/tutorials/skills-getting-started.md +36 -31
  27. package/bundle/docs/cli/tutorials/task-planning.md +93 -0
  28. package/bundle/docs/cli/tutorials/web-tools.md +78 -0
  29. package/bundle/docs/core/policy-engine.md +4 -2
  30. package/bundle/docs/core/subagents.md +38 -38
  31. package/bundle/docs/extensions/best-practices.md +102 -53
  32. package/bundle/docs/extensions/index.md +37 -21
  33. package/bundle/docs/extensions/reference.md +148 -216
  34. package/bundle/docs/extensions/releasing.md +93 -122
  35. package/bundle/docs/extensions/writing-extensions.md +87 -76
  36. package/bundle/docs/get-started/configuration.md +103 -61
  37. package/bundle/docs/get-started/examples.md +39 -119
  38. package/bundle/docs/get-started/index.md +5 -4
  39. package/bundle/docs/get-started/installation.md +110 -77
  40. package/bundle/docs/index.md +156 -108
  41. package/bundle/docs/releases.md +2 -2
  42. package/bundle/docs/sidebar.json +101 -61
  43. package/bundle/docs/tools/activate-skill.md +43 -0
  44. package/bundle/docs/tools/ask-user.md +1 -1
  45. package/bundle/docs/tools/file-system.md +43 -133
  46. package/bundle/docs/tools/index.md +92 -91
  47. package/bundle/docs/tools/internal-docs.md +46 -0
  48. package/bundle/docs/tools/mcp-server.md +2 -2
  49. package/bundle/docs/tools/memory.md +21 -40
  50. package/bundle/docs/tools/shell.md +43 -88
  51. package/bundle/docs/tools/todos.md +22 -44
  52. package/bundle/docs/tools/web-fetch.md +22 -46
  53. package/bundle/docs/tools/web-search.md +19 -29
  54. package/bundle/gemini.js +138556 -136594
  55. package/bundle/mcp-bridge.js +154 -143
  56. package/bundle/node_modules/@browserbasehq/stagehand/dist/index.js +165438 -0
  57. package/bundle/node_modules/@browserbasehq/stagehand/package.json +102 -0
  58. package/bundle/node_modules/@thacio/auditaria-search/dist/tsconfig.tsbuildinfo +1 -1
  59. package/bundle/web-client/components/EditorPanel.js +57 -36
  60. package/bundle/web-client/components/FileTreePanel.js +240 -59
  61. package/bundle/web-client/index.html +5 -1
  62. package/bundle/web-client/managers/EditorManager.js +190 -24
  63. package/bundle/web-client/managers/FileTreeManager.js +301 -69
  64. package/bundle/web-client/styles/file-browser.css +42 -0
  65. package/bundle/web-client/styles/themes.css +376 -0
  66. package/bundle/web-client/utils/theme-manager.js +33 -1
  67. package/package.json +7 -6
  68. package/bundle/docs/architecture.md +0 -80
  69. package/bundle/docs/cli/index.md +0 -67
  70. package/bundle/docs/cli/tutorials.md +0 -87
  71. package/bundle/docs/get-started/configuration-v1.md +0 -882
@@ -1,87 +0,0 @@
1
- # Tutorials
2
-
3
- This page contains tutorials for interacting with Gemini CLI.
4
-
5
- ## Agent Skills
6
-
7
- - [Getting Started with Agent Skills](./tutorials/skills-getting-started.md)
8
-
9
- ## Setting up a Model Context Protocol (MCP) server
10
-
11
- > [!CAUTION] Before using a third-party MCP server, ensure you trust its source
12
- > and understand the tools it provides. Your use of third-party servers is at
13
- > your own risk.
14
-
15
- This tutorial demonstrates how to set up an MCP server, using the
16
- [GitHub MCP server](https://github.com/github/github-mcp-server) as an example.
17
- The GitHub MCP server provides tools for interacting with GitHub repositories,
18
- such as creating issues and commenting on pull requests.
19
-
20
- ### Prerequisites
21
-
22
- Before you begin, ensure you have the following installed and configured:
23
-
24
- - **Docker:** Install and run [Docker].
25
- - **GitHub Personal Access Token (PAT):** Create a new [classic] or
26
- [fine-grained] PAT with the necessary scopes.
27
-
28
- [Docker]: https://www.docker.com/
29
- [classic]: https://github.com/settings/tokens/new
30
- [fine-grained]: https://github.com/settings/personal-access-tokens/new
31
-
32
- ### Guide
33
-
34
- #### Configure the MCP server in `settings.json`
35
-
36
- In your project's root directory, create or open the
37
- [`.gemini/settings.json` file](../get-started/configuration.md). Within the
38
- file, add the `mcpServers` configuration block, which provides instructions for
39
- how to launch the GitHub MCP server.
40
-
41
- ```json
42
- {
43
- "mcpServers": {
44
- "github": {
45
- "command": "docker",
46
- "args": [
47
- "run",
48
- "-i",
49
- "--rm",
50
- "-e",
51
- "GITHUB_PERSONAL_ACCESS_TOKEN",
52
- "ghcr.io/github/github-mcp-server"
53
- ],
54
- "env": {
55
- "GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
56
- }
57
- }
58
- }
59
- }
60
- ```
61
-
62
- #### Set your GitHub token
63
-
64
- > [!CAUTION] Using a broadly scoped personal access token that has access to
65
- > personal and private repositories can lead to information from the private
66
- > repository being leaked into the public repository. We recommend using a
67
- > fine-grained access token that doesn't share access to both public and private
68
- > repositories.
69
-
70
- Use an environment variable to store your GitHub PAT:
71
-
72
- ```bash
73
- GITHUB_PERSONAL_ACCESS_TOKEN="pat_YourActualGitHubTokenHere"
74
- ```
75
-
76
- Gemini CLI uses this value in the `mcpServers` configuration that you defined in
77
- the `settings.json` file.
78
-
79
- #### Launch Gemini CLI and verify the connection
80
-
81
- When you launch Gemini CLI, it automatically reads your configuration and
82
- launches the GitHub MCP server in the background. You can then use natural
83
- language prompts to ask Gemini CLI to perform GitHub actions. For example:
84
-
85
- ```bash
86
- "get all open issues assigned to me in the 'foo/bar' repo and prioritize them"
87
- ```