@codeflyai/codefly 0.24.1 β 0.24.2
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.
- package/bundle/builtin/skill-creator/SKILL.md +382 -0
- package/bundle/builtin/skill-creator/scripts/init_skill.cjs +235 -0
- package/bundle/builtin/skill-creator/scripts/package_skill.cjs +102 -0
- package/bundle/builtin/skill-creator/scripts/validate_skill.cjs +127 -0
- package/bundle/codefly.js +296592 -296367
- package/bundle/docs/architecture.md +3 -3
- package/bundle/docs/assets/monitoring-dashboard-logs.png +0 -0
- package/bundle/docs/assets/monitoring-dashboard-metrics.png +0 -0
- package/bundle/docs/assets/monitoring-dashboard-overview.png +0 -0
- package/bundle/docs/changelogs/index.md +134 -0
- package/bundle/docs/changelogs/latest.md +355 -210
- package/bundle/docs/changelogs/preview.md +318 -115
- package/bundle/docs/cli/commands.md +21 -0
- package/bundle/docs/cli/custom-commands.md +9 -9
- package/bundle/docs/cli/index.md +6 -2
- package/bundle/docs/cli/keyboard-shortcuts.md +61 -78
- package/bundle/docs/cli/model-routing.md +7 -2
- package/bundle/docs/cli/model.md +1 -1
- package/bundle/docs/cli/openspec.md +164 -0
- package/bundle/docs/cli/sandbox.md +1 -1
- package/bundle/docs/cli/settings.md +80 -60
- package/bundle/docs/cli/skills.md +188 -0
- package/bundle/docs/cli/system-prompt.md +32 -0
- package/bundle/docs/cli/telemetry.md +38 -3
- package/bundle/docs/cli/themes.md +0 -2
- package/bundle/docs/cli/tutorials/skills-getting-started.md +124 -0
- package/bundle/docs/cli/tutorials.md +4 -0
- package/bundle/docs/core/index.md +4 -0
- package/bundle/docs/core/memport.md +2 -0
- package/bundle/docs/core/policy-engine.md +3 -2
- package/bundle/docs/extensions/getting-started-extensions.md +39 -2
- package/bundle/docs/get-started/configuration.md +130 -74
- package/bundle/docs/get-started/gemini-3.md +2 -17
- package/bundle/docs/hooks/reference.md +245 -116
- package/bundle/docs/index.md +2 -0
- package/bundle/docs/local-development.md +1 -1
- package/bundle/docs/releases.md +1 -1
- package/bundle/docs/sidebar.json +5 -5
- package/bundle/docs/tools/index.md +3 -0
- package/bundle/docs/tools/mcp-server.md +26 -2
- package/bundle/docs/tools/shell.md +1 -1
- package/bundle/docs/troubleshooting.md +23 -5
- package/bundle/policies/agent.toml +1 -1
- package/bundle/policies/plan.toml +70 -0
- package/bundle/policies/read-only.toml +0 -5
- package/bundle/policies/yolo.toml +1 -0
- package/package.json +10 -5
- package/bundle/docs/get-started/deployment.md +0 -143
|
@@ -13,11 +13,11 @@ input:
|
|
|
13
13
|
as handling the initial user input, presenting the final output, and
|
|
14
14
|
managing the overall user experience.
|
|
15
15
|
- **Key functions contained in the package:**
|
|
16
|
-
- [Input processing](/docs/cli/commands
|
|
16
|
+
- [Input processing](/docs/cli/commands)
|
|
17
17
|
- History management
|
|
18
18
|
- Display rendering
|
|
19
|
-
- [Theme and UI customization](/docs/cli/themes
|
|
20
|
-
- [CLI configuration settings](/docs/get-started/configuration
|
|
19
|
+
- [Theme and UI customization](/docs/cli/themes)
|
|
20
|
+
- [CLI configuration settings](/docs/get-started/configuration)
|
|
21
21
|
|
|
22
22
|
2. **Core package (`packages/core`):**
|
|
23
23
|
- **Purpose:** This acts as the backend for the Gemini CLI. It receives
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -18,6 +18,140 @@ on GitHub.
|
|
|
18
18
|
| [Preview](preview.md) | Experimental features ready for early feedback. |
|
|
19
19
|
| [Stable](latest.md) | Stable, recommended for general use. |
|
|
20
20
|
|
|
21
|
+
## Announcements: v0.25.0 - 2026-01-20
|
|
22
|
+
|
|
23
|
+
- **Skills and Agents Improvements:** We've enhanced the `activate_skill` tool,
|
|
24
|
+
added a new `pr-creator` skill
|
|
25
|
+
([#16232](https://github.com/google-gemini/gemini-cli/pull/16232) by
|
|
26
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)), enabled skills by
|
|
27
|
+
default, improved the `cli_help` agent
|
|
28
|
+
([#16100](https://github.com/google-gemini/gemini-cli/pull/16100) by
|
|
29
|
+
[@scidomino](https://github.com/scidomino)), and added a new `/agents refresh`
|
|
30
|
+
command ([#16204](https://github.com/google-gemini/gemini-cli/pull/16204) by
|
|
31
|
+
[@joshualitt](https://github.com/joshualitt)).
|
|
32
|
+
- **UI/UX Refinements:** You'll notice more transparent feedback for skills
|
|
33
|
+
([#15954](https://github.com/google-gemini/gemini-cli/pull/15954) by
|
|
34
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)), the ability to switch
|
|
35
|
+
focus between the shell and input with Tab
|
|
36
|
+
([#14332](https://github.com/google-gemini/gemini-cli/pull/14332) by
|
|
37
|
+
[@jacob314](https://github.com/jacob314)), and dynamic terminal tab titles
|
|
38
|
+
([#16378](https://github.com/google-gemini/gemini-cli/pull/16378) by
|
|
39
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)).
|
|
40
|
+
- **Core Functionality & Performance:** This release includes support for
|
|
41
|
+
built-in agent skills
|
|
42
|
+
([#16045](https://github.com/google-gemini/gemini-cli/pull/16045) by
|
|
43
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)), refined Gemini 3 system
|
|
44
|
+
instructions ([#16139](https://github.com/google-gemini/gemini-cli/pull/16139)
|
|
45
|
+
by [@NTaylorMullen](https://github.com/NTaylorMullen)), caching for ignore
|
|
46
|
+
instances to improve performance
|
|
47
|
+
([#16185](https://github.com/google-gemini/gemini-cli/pull/16185) by
|
|
48
|
+
[@EricRahm](https://github.com/EricRahm)), and enhanced retry mechanisms
|
|
49
|
+
([#16489](https://github.com/google-gemini/gemini-cli/pull/16489) by
|
|
50
|
+
[@sehoon38](https://github.com/sehoon38)).
|
|
51
|
+
- **Bug Fixes and Stability:** We've squashed numerous bugs across the CLI,
|
|
52
|
+
core, and workflows, addressing issues with subagent delegation, unicode
|
|
53
|
+
character crashes, and sticky header regressions.
|
|
54
|
+
|
|
55
|
+
## Announcements: v0.24.0 - 2026-01-14
|
|
56
|
+
|
|
57
|
+
- **Agent Skills:** We've introduced significant advancements in Agent Skills.
|
|
58
|
+
This includes initial documentation and tutorials to help you get started,
|
|
59
|
+
alongside enhanced support for remote agents, allowing for more distributed
|
|
60
|
+
and powerful automation within Gemini CLI.
|
|
61
|
+
([#15869](https://github.com/google-gemini/gemini-cli/pull/15869) by
|
|
62
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)),
|
|
63
|
+
([#16013](https://github.com/google-gemini/gemini-cli/pull/16013) by
|
|
64
|
+
[@adamweidman](https://github.com/adamweidman))
|
|
65
|
+
- **Improved UI/UX:** The user interface has received several updates, featuring
|
|
66
|
+
visual indicators for hook execution, a more refined display for settings, and
|
|
67
|
+
the ability to use the Tab key to effortlessly switch focus between the shell
|
|
68
|
+
and input areas.
|
|
69
|
+
([#15408](https://github.com/google-gemini/gemini-cli/pull/15408) by
|
|
70
|
+
[@abhipatel12](https://github.com/abhipatel12)),
|
|
71
|
+
([#14332](https://github.com/google-gemini/gemini-cli/pull/14332) by
|
|
72
|
+
[@galz10](https://github.com/galz10))
|
|
73
|
+
- **Enhanced Security:** Security has been a major focus, with default folder
|
|
74
|
+
trust now set to untrusted for increased safety. The Policy Engine has been
|
|
75
|
+
improved to allow specific modes in user and administrator policies, and
|
|
76
|
+
granular allowlisting for shell commands has been implemented, providing finer
|
|
77
|
+
control over tool execution.
|
|
78
|
+
([#15943](https://github.com/google-gemini/gemini-cli/pull/15943) by
|
|
79
|
+
[@galz10](https://github.com/galz10)),
|
|
80
|
+
([#15977](https://github.com/google-gemini/gemini-cli/pull/15977) by
|
|
81
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen))
|
|
82
|
+
- **Core Functionality:** This release includes a mandatory MessageBus
|
|
83
|
+
injection, marking Phase 3 of a hard migration to a more robust internal
|
|
84
|
+
communication system. We've also added support for built-in skills with the
|
|
85
|
+
CLI itself, and enhanced model routing to effectively utilize subagents.
|
|
86
|
+
([#15776](https://github.com/google-gemini/gemini-cli/pull/15776) by
|
|
87
|
+
[@abhipatel12](https://github.com/abhipatel12)),
|
|
88
|
+
([#16300](https://github.com/google-gemini/gemini-cli/pull/16300) by
|
|
89
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen))
|
|
90
|
+
- **Terminal Features:** Terminal interactions are more seamless with new
|
|
91
|
+
features like OSC 52 paste support, along with fixes for Windows clipboard
|
|
92
|
+
paste issues and general improvements to pasting in Windows terminals.
|
|
93
|
+
([#15336](https://github.com/google-gemini/gemini-cli/pull/15336) by
|
|
94
|
+
[@scidomino](https://github.com/scidomino)),
|
|
95
|
+
([#15932](https://github.com/google-gemini/gemini-cli/pull/15932) by
|
|
96
|
+
[@scidomino](https://github.com/scidomino))
|
|
97
|
+
- **New Commands:** To manage the new features, we've added several new
|
|
98
|
+
commands: `/agents refresh` to update agent configurations, `/skills reload`
|
|
99
|
+
to refresh skill definitions, and `/skills install/uninstall` for easier
|
|
100
|
+
management of your Agent Skills.
|
|
101
|
+
([#16204](https://github.com/google-gemini/gemini-cli/pull/16204) by
|
|
102
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)),
|
|
103
|
+
([#15865](https://github.com/google-gemini/gemini-cli/pull/15865) by
|
|
104
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen)),
|
|
105
|
+
([#16377](https://github.com/google-gemini/gemini-cli/pull/16377) by
|
|
106
|
+
[@NTaylorMullen](https://github.com/NTaylorMullen))
|
|
107
|
+
|
|
108
|
+
## Announcements: v0.23.0 - 2026-01-07
|
|
109
|
+
|
|
110
|
+
- π **Experimental Agent Skills Support in Preview:** Gemini CLI now supports
|
|
111
|
+
[Agent Skills](https://agentskills.io/home) in our preview builds. This is an
|
|
112
|
+
early preview where weβre looking for feedback!
|
|
113
|
+
- Install Preview: `npm install -g @google/gemini-cli@preview`
|
|
114
|
+
- Enable in `/settings`
|
|
115
|
+
- Docs:
|
|
116
|
+
[https://geminicli.com/docs/cli/skills/](https://geminicli.com/docs/cli/skills/)
|
|
117
|
+
- **Gemini CLI wrapped:** Run `npx gemini-wrapped` to visualize your usage
|
|
118
|
+
stats, top models, languages, and more!
|
|
119
|
+
- **Windows clipboard image support:** Windows users can now paste images
|
|
120
|
+
directly from their clipboard into the CLI using `Alt`+`V`.
|
|
121
|
+
([pr](https://github.com/google-gemini/gemini-cli/pull/13997) by
|
|
122
|
+
[@sgeraldes](https://github.com/sgeraldes))
|
|
123
|
+
- **Terminal background color detection:** Automatically optimizes your
|
|
124
|
+
terminal's background color to select compatible themes and provide
|
|
125
|
+
accessibility warnings.
|
|
126
|
+
([pr](https://github.com/google-gemini/gemini-cli/pull/15132) by
|
|
127
|
+
[@jacob314](https://github.com/jacob314))
|
|
128
|
+
- **Session logout:** Use the new `/logout` command to instantly clear
|
|
129
|
+
credentials and reset your authentication state for seamless account
|
|
130
|
+
switching. ([pr](https://github.com/google-gemini/gemini-cli/pull/13383) by
|
|
131
|
+
[@CN-Scars](https://github.com/CN-Scars))
|
|
132
|
+
|
|
133
|
+
## Announcements: v0.22.0 - 2025-12-22
|
|
134
|
+
|
|
135
|
+
- π**Free Tier + Gemini 3:** Free tier users now all have access to Gemini 3
|
|
136
|
+
Pro & Flash. Enable in `/settings` by toggling "Preview Features" to `true`.
|
|
137
|
+
- π**Gemini CLI + Colab:** Gemini CLI is now pre-installed. Can be used
|
|
138
|
+
headlessly in notebook cells or interactively in the built-in terminal
|
|
139
|
+
([pic](https://imgur.com/a/G0Tn7vi))
|
|
140
|
+
- π**Gemini CLI Extensions:**
|
|
141
|
+
- **Conductor:** Planning++, Gemini works with you to build out a detailed
|
|
142
|
+
plan, pull in extra details as needed, ultimately to give the LLM guardrails
|
|
143
|
+
with artifacts. Measure twice, implement once!
|
|
144
|
+
|
|
145
|
+
`gemini extensions install https://github.com/gemini-cli-extensions/conductor`
|
|
146
|
+
|
|
147
|
+
Blog:
|
|
148
|
+
[https://developers.googleblog.com/conductor-introducing-context-driven-development-for-gemini-cli/](https://developers.googleblog.com/conductor-introducing-context-driven-development-for-gemini-cli/)
|
|
149
|
+
|
|
150
|
+
- **Endor Labs:** Perform code analysis, vulnerability scanning, and
|
|
151
|
+
dependency checks using natural language.
|
|
152
|
+
|
|
153
|
+
`gemini extensions install https://github.com/endorlabs/gemini-extension`
|
|
154
|
+
|
|
21
155
|
## Announcements: v0.21.0 - 2025-12-15
|
|
22
156
|
|
|
23
157
|
- **β‘οΈβ‘οΈβ‘οΈ Gemini 3 Flash + Gemini CLI:** Better, faster and cheaper than 2.5
|