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
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions crates/google-workspace-cli/src/generate_skills.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ use crate::services;
use clap::Command;
use std::path::Path;

const PERSONAS_YAML: &str = include_str!("../../../registry/personas.yaml");
const RECIPES_YAML: &str = include_str!("../../../registry/recipes.yaml");
const PERSONAS_YAML: &str = include_str!("../registry/personas.yaml");
const RECIPES_YAML: &str = include_str!("../registry/recipes.yaml");

/// Methods blocked from skill generation.
/// Format: (service_alias, resource, method).
Expand Down
2 changes: 1 addition & 1 deletion crates/google-workspace-cli/src/helpers/modelarmor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ fn load_preset_template(name: &str) -> Result<String, GwsError> {

// Fallback: embedded preset
eprintln!("Template file not found, using embedded '{}' preset", name);
Ok(include_str!("../../../../templates/modelarmor/jailbreak.json").to_string())
Ok(include_str!("../../templates/modelarmor/jailbreak.json").to_string())
}

#[cfg(test)]
Expand Down
1 change: 0 additions & 1 deletion skills/gws-chat/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ gws chat <resource> <method> [flags]

### users

- `sections` — Operations on the 'sections' resource
- `spaces` — Operations on the 'spaces' resource

## Discovering Commands
Expand Down
Loading