v1.0.2
This commit is contained in:
parent
3aa54e9f05
commit
bcbfd93f37
9 changed files with 19 additions and 13 deletions
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "ACP Server",
|
"name": "ACP Server",
|
||||||
|
|
|
||||||
|
|
@ -12,3 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## v1.0.1
|
## v1.0.1
|
||||||
|
|
||||||
- Fix update notification
|
- Fix update notification
|
||||||
|
|
||||||
|
## v1.0.2
|
||||||
|
|
||||||
|
- Fix setup flow for vibe-acp builds
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
id = "mistral-vibe"
|
id = "mistral-vibe"
|
||||||
name = "Mistral Vibe"
|
name = "Mistral Vibe"
|
||||||
description = "Lightning-fast AI agent that actually gets things done"
|
description = "Lightning-fast AI agent that actually gets things done"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
schema_version = 1
|
schema_version = 1
|
||||||
authors = ["Mistral AI"]
|
authors = ["Mistral AI"]
|
||||||
repository = "https://github.com/mistralai/mistral-vibe"
|
repository = "https://github.com/mistralai/mistral-vibe"
|
||||||
|
|
@ -11,25 +11,25 @@ name = "Mistral Vibe"
|
||||||
icon = "./icons/mistral_vibe.svg"
|
icon = "./icons/mistral_vibe.svg"
|
||||||
|
|
||||||
[agent_servers.mistral-vibe-agent.targets.darwin-aarch64]
|
[agent_servers.mistral-vibe-agent.targets.darwin-aarch64]
|
||||||
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-darwin-aarch64-1.0.1.zip"
|
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-darwin-aarch64-1.0.2.zip"
|
||||||
cmd = "./vibe-acp"
|
cmd = "./vibe-acp"
|
||||||
|
|
||||||
[agent_servers.mistral-vibe-agent.targets.darwin-x86_64]
|
[agent_servers.mistral-vibe-agent.targets.darwin-x86_64]
|
||||||
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-darwin-x86_64-1.0.1.zip"
|
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-darwin-x86_64-1.0.2.zip"
|
||||||
cmd = "./vibe-acp"
|
cmd = "./vibe-acp"
|
||||||
|
|
||||||
# [agent_servers.mistral-vibe-agent.targets.linux-aarch64]
|
# [agent_servers.mistral-vibe-agent.targets.linux-aarch64]
|
||||||
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-linux-aarch64-1.0.1.zip"
|
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-linux-aarch64-1.0.2.zip"
|
||||||
# cmd = "./vibe-acp"
|
# cmd = "./vibe-acp"
|
||||||
|
|
||||||
[agent_servers.mistral-vibe-agent.targets.linux-x86_64]
|
[agent_servers.mistral-vibe-agent.targets.linux-x86_64]
|
||||||
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-linux-x86_64-1.0.1.zip"
|
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-linux-x86_64-1.0.2.zip"
|
||||||
cmd = "./vibe-acp"
|
cmd = "./vibe-acp"
|
||||||
|
|
||||||
# [agent_servers.mistral-vibe-agent.targets.windows-aarch64]
|
# [agent_servers.mistral-vibe-agent.targets.windows-aarch64]
|
||||||
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-windows-aarch64-1.0.1.zip"
|
# archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-windows-aarch64-1.0.2.zip"
|
||||||
# cmd = "./vibe-acp.exe"
|
# cmd = "./vibe-acp.exe"
|
||||||
|
|
||||||
[agent_servers.mistral-vibe-agent.targets.windows-x86_64]
|
[agent_servers.mistral-vibe-agent.targets.windows-x86_64]
|
||||||
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.1/vibe-acp-windows-x86_64-1.0.1.zip"
|
archive = "https://github.com/mistralai/mistral-vibe/releases/download/v1.0.2/vibe-acp-windows-x86_64-1.0.2.zip"
|
||||||
cmd = "./vibe-acp.exe"
|
cmd = "./vibe-acp.exe"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "mistral-vibe"
|
name = "mistral-vibe"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
description = "Minimal CLI coding agent by Mistral"
|
description = "Minimal CLI coding agent by Mistral"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|
|
||||||
|
|
@ -351,7 +351,7 @@ class TestInitialization:
|
||||||
mcpCapabilities=McpCapabilities(http=False, sse=False),
|
mcpCapabilities=McpCapabilities(http=False, sse=False),
|
||||||
)
|
)
|
||||||
assert response.result.agentInfo == Implementation(
|
assert response.result.agentInfo == Implementation(
|
||||||
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.1"
|
name="@mistralai/mistral-vibe", title="Mistral Vibe", version="1.0.2"
|
||||||
)
|
)
|
||||||
vibe_setup_method = next(
|
vibe_setup_method = next(
|
||||||
(
|
(
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@
|
||||||
</text><text class="terminal-r1" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-line-24)">
|
</text><text class="terminal-r1" x="1464" y="605.6" textLength="12.2" clip-path="url(#terminal-line-24)">
|
||||||
</text><text class="terminal-r4" x="744.2" y="630" textLength="12.2" clip-path="url(#terminal-line-25)">▌</text><text class="terminal-r1" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-line-25)">
|
</text><text class="terminal-r4" x="744.2" y="630" textLength="12.2" clip-path="url(#terminal-line-25)">▌</text><text class="terminal-r1" x="1464" y="630" textLength="12.2" clip-path="url(#terminal-line-25)">
|
||||||
</text><text class="terminal-r4" x="744.2" y="654.4" textLength="12.2" clip-path="url(#terminal-line-26)">▌</text><text class="terminal-r5" x="768.6" y="654.4" textLength="195.2" clip-path="url(#terminal-line-26)">Update available</text><text class="terminal-r1" x="1464" y="654.4" textLength="12.2" clip-path="url(#terminal-line-26)">
|
</text><text class="terminal-r4" x="744.2" y="654.4" textLength="12.2" clip-path="url(#terminal-line-26)">▌</text><text class="terminal-r5" x="768.6" y="654.4" textLength="195.2" clip-path="url(#terminal-line-26)">Update available</text><text class="terminal-r1" x="1464" y="654.4" textLength="12.2" clip-path="url(#terminal-line-26)">
|
||||||
</text><text class="terminal-r4" x="744.2" y="678.8" textLength="12.2" clip-path="url(#terminal-line-27)">▌</text><text class="terminal-r3" x="768.6" y="678.8" textLength="207.4" clip-path="url(#terminal-line-27)">1.0.1 => 1000.2.0</text><text class="terminal-r1" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-line-27)">
|
</text><text class="terminal-r4" x="744.2" y="678.8" textLength="12.2" clip-path="url(#terminal-line-27)">▌</text><text class="terminal-r3" x="768.6" y="678.8" textLength="207.4" clip-path="url(#terminal-line-27)">1.0.2 => 1000.2.0</text><text class="terminal-r1" x="1464" y="678.8" textLength="12.2" clip-path="url(#terminal-line-27)">
|
||||||
</text><text class="terminal-r4" x="744.2" y="703.2" textLength="12.2" clip-path="url(#terminal-line-28)">▌</text><text class="terminal-r3" x="768.6" y="703.2" textLength="536.8" clip-path="url(#terminal-line-28)">Run "uv tool upgrade mistral-vibe" to update</text><text class="terminal-r1" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-line-28)">
|
</text><text class="terminal-r4" x="744.2" y="703.2" textLength="12.2" clip-path="url(#terminal-line-28)">▌</text><text class="terminal-r3" x="768.6" y="703.2" textLength="536.8" clip-path="url(#terminal-line-28)">Run "uv tool upgrade mistral-vibe" to update</text><text class="terminal-r1" x="1464" y="703.2" textLength="12.2" clip-path="url(#terminal-line-28)">
|
||||||
</text><text class="terminal-r4" x="744.2" y="727.6" textLength="12.2" clip-path="url(#terminal-line-29)">▌</text><text class="terminal-r1" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-line-29)">
|
</text><text class="terminal-r4" x="744.2" y="727.6" textLength="12.2" clip-path="url(#terminal-line-29)">▌</text><text class="terminal-r1" x="1464" y="727.6" textLength="12.2" clip-path="url(#terminal-line-29)">
|
||||||
</text><text class="terminal-r6" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-line-30)">╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮</text><text class="terminal-r1" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-line-30)">
|
</text><text class="terminal-r6" x="24.4" y="752" textLength="1415.2" clip-path="url(#terminal-line-30)">╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮</text><text class="terminal-r1" x="1464" y="752" textLength="12.2" clip-path="url(#terminal-line-30)">
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
2
uv.lock
generated
2
uv.lock
generated
|
|
@ -661,7 +661,7 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mistral-vibe"
|
name = "mistral-vibe"
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "agent-client-protocol" },
|
{ name = "agent-client-protocol" },
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,8 @@ a = Analysis(
|
||||||
# By default, pyinstaller doesn't include the .md files
|
# By default, pyinstaller doesn't include the .md files
|
||||||
('vibe/core/prompts/*.md', 'vibe/core/prompts'),
|
('vibe/core/prompts/*.md', 'vibe/core/prompts'),
|
||||||
('vibe/core/tools/builtins/prompts/*.md', 'vibe/core/tools/builtins/prompts'),
|
('vibe/core/tools/builtins/prompts/*.md', 'vibe/core/tools/builtins/prompts'),
|
||||||
|
# We also need to add all setup files
|
||||||
|
('vibe/setup/*', 'vibe/setup'),
|
||||||
# This is necessary because tools are dynamically called in vibe, meaning there is no static reference to those files
|
# This is necessary because tools are dynamically called in vibe, meaning there is no static reference to those files
|
||||||
('vibe/core/tools/builtins/*.py', 'vibe/core/tools/builtins'),
|
('vibe/core/tools/builtins/*.py', 'vibe/core/tools/builtins'),
|
||||||
('vibe/acp/tools/builtins/*.py', 'vibe/acp/tools/builtins'),
|
('vibe/acp/tools/builtins/*.py', 'vibe/acp/tools/builtins'),
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
__all__ = ["__version__", "run_programmatic"]
|
__all__ = ["__version__", "run_programmatic"]
|
||||||
__version__ = "1.0.1"
|
__version__ = "1.0.2"
|
||||||
|
|
||||||
from vibe.core.programmatic import run_programmatic
|
from vibe.core.programmatic import run_programmatic
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue