Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9,717 changes: 9,717 additions & 0 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ catalog:
"@tanstack/react-router": ^1.168.22
"@tanstack/router-generator": ^1.166.32
"@tanstack/router-plugin": ^1.167.22
"@tauri-apps/api": ^2.10.1
"@tauri-apps/cli": ^2.10.1
"@tauri-apps/plugin-shell": ^2.3.5
"@tauri-apps/plugin-updater": ^2.10.1
"@tauri-apps/api": ~2.10.1
"@tauri-apps/cli": ~2.10.1
"@tauri-apps/plugin-shell": ~2.3.5
"@tauri-apps/plugin-updater": ~2.10.1
"@theguild/remark-mermaid": ^0.3.0
"@truenine/eslint10-config": ^2026.10411.10025
"@types/estree": ^1.0.8
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/domain/output_plans/codex_output_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ use std::path::PathBuf;
use crate::CliError;
use crate::domain::base_output_plans::{BaseOutputFileDeclarationDto, BaseOutputPluginPlanDto};
use crate::domain::cleanup::{CleanupDeclarationsDto, CleanupTargetDto, CleanupTargetKindDto};
use crate::domain::config;
use crate::domain::output_context::OutputContext;
use crate::domain::output_plans::shared::resolve_effective_home_dir;
use crate::domain::plugin_shared::{Project, RelativePath, Workspace};

const CODEX_PLUGIN_NAME: &str = "CodexCLIOutputAdaptor";
Expand Down
5 changes: 2 additions & 3 deletions sdk/src/domain/output_plans/droid_output_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ use serde_json::{Map, Value};

use crate::CliError;
use crate::domain::cleanup::{CleanupDeclarationsDto, CleanupTargetDto, CleanupTargetKindDto};
use crate::domain::config;
use crate::domain::output_context::OutputContext;
use crate::domain::output_plans::shared::resolve_effective_home_dir;
use crate::domain::plugin_shared::{
FastCommandPrompt, Project, RelativePath, RuleScope, SkillPrompt, SkillResourceEncoding,
Workspace,
Project, RelativePath, RuleScope, SkillPrompt, SlashCommandPrompt, Workspace,
};

const DROID_PLUGIN_NAME: &str = "DroidCLIOutputAdaptor";
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/domain/output_plans/gemini_output_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use std::path::PathBuf;
use crate::CliError;
use crate::domain::base_output_plans::{BaseOutputFileDeclarationDto, BaseOutputPluginPlanDto};
use crate::domain::cleanup::{CleanupDeclarationsDto, CleanupTargetDto, CleanupTargetKindDto};
use crate::domain::config;
use crate::domain::output_context::OutputContext;
use crate::domain::output_plans::shared::resolve_effective_home_dir;
use crate::domain::plugin_shared::{Project, RelativePath, Workspace};

const GEMINI_PLUGIN_NAME: &str = "GeminiCLIOutputAdaptor";
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/domain/output_plans/opencode_output_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use serde_json::Value;
use crate::CliError;
use crate::domain::base_output_plans::{BaseOutputFileDeclarationDto, BaseOutputPluginPlanDto};
use crate::domain::cleanup::{CleanupDeclarationsDto, CleanupTargetDto, CleanupTargetKindDto};
use crate::domain::config;
use crate::domain::output_context::OutputContext;
use crate::domain::output_plans::shared::resolve_effective_home_dir;
use crate::domain::plugin_shared::{Project, RelativePath, Workspace};

const OPENCODE_PLUGIN_NAME: &str = "OpencodeCLIOutputAdaptor";
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/infra/logger/sink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn clear_diagnostics() {

/// Bound the worker-drain wait so a wedged worker (deadlocked, sigstop'd,
/// blocked on a slow stdout pipe) can't hang process shutdown indefinitely.
const FLUSH_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(5);
const _FLUSH_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(5);

pub fn flush() {
let (ack_tx, ack_rx) = mpsc::channel();
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/services/dry_run_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub fn dry_run(options: MemorySyncCommandOptions) -> Result<MemorySyncCommandRes
"Context collected",
Some(json!({
"globalMemory": context.global_memory.is_some(),
"commands": context.fast_commands.as_ref().map(|v| v.len()),
"commands": context.slash_commands.as_ref().map(|v| v.len()),
"skills": context.skills.as_ref().map(|v| v.len()),
"rules": context.rules.as_ref().map(|v| v.len()),
})),
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/services/install_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub(crate) fn install(
"Context collected",
Some(json!({
"globalMemory": context.global_memory.is_some(),
"commands": context.fast_commands.as_ref().map(|v| v.len()),
"commands": context.slash_commands.as_ref().map(|v| v.len()),
"skills": context.skills.as_ref().map(|v| v.len()),
"rules": context.rules.as_ref().map(|v| v.len()),
})),
Expand Down
Loading