llman 0.0.30

A tool for managing LLM application rules(prompts) ...
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
use crate::config::{CODEX_APP, Config};
use crate::fs_utils::atomic_write_with_mode;
use crate::path_utils::{safe_parent_for_creation, validate_path_segment};
use crate::prompts::confirm::confirm_overwrite;
use crate::prompts::managed_file::write_llman_managed_block;
use crate::prompts::paths::{codex_home_dir, cwd, project_root};
use crate::prompts::store as prompt_store;
use crate::skills::cli::interactive::is_interactive;
use anyhow::{Result, anyhow, bail};
use clap::{Args, Subcommand, ValueEnum};
use inquire::MultiSelect;
use std::fs;
use std::path::{Path, PathBuf};

const CODEX_AGENTS_FILE: &str = "AGENTS.md";
const CODEX_AGENTS_OVERRIDE_FILE: &str = "AGENTS.override.md";

#[derive(Args, Debug, Clone)]
#[command(about = "Manage Codex prompt templates and inject Codex configuration files")]
#[command(subcommand_required = false)]
pub struct CodexPromptsArgs {
    #[command(subcommand)]
    pub command: Option<CodexPromptsCommand>,
}

#[derive(Subcommand, Debug, Clone)]
pub enum CodexPromptsCommand {
    /// Generate Codex prompts / project doc injection from a template
    Gen {
        #[arg(long, required = true)]
        template: String,

        /// Target scope(s) for injection. Repeat or use a comma list (e.g. --scope global --scope project)
        #[arg(long, value_enum, value_delimiter = ',', action = clap::ArgAction::Append, default_value = "project")]
        scope: Vec<PromptScopeArg>,

        /// Injection target(s): `prompts` (custom prompts) and/or `project-doc` (AGENTS*.md)
        #[arg(long, value_enum, value_delimiter = ',', action = clap::ArgAction::Append)]
        target: Vec<CodexTargetArg>,

        /// For codex + target=project-doc: write to AGENTS.override.md instead of AGENTS.md
        #[arg(long = "override")]
        override_file: bool,

        /// Output file name (defaults to template name). Only applies to `--target prompts`.
        #[arg(long)]
        name: Option<String>,

        /// Force generation, skip repository detection / overwrite checks
        #[arg(long)]
        force: bool,
    },
    /// List available templates
    List,
    /// Create or update a template
    Upsert {
        #[arg(long)]
        name: String,
        #[command(flatten)]
        content: TemplateContentSource,
    },
    /// Remove a template
    Rm {
        #[arg(long)]
        name: String,
        /// Skip confirmation prompts (required for non-interactive deletes)
        #[arg(long)]
        yes: bool,
    },
}

#[derive(ValueEnum, Debug, Clone, Copy, PartialEq, Eq)]
pub enum PromptScopeArg {
    Global,
    Project,
}

#[derive(ValueEnum, Debug, Clone, Copy, PartialEq, Eq, Ord, PartialOrd)]
pub enum CodexTargetArg {
    /// Codex custom prompts under `prompts/*.md`
    Prompts,
    /// Codex project doc injection into `AGENTS*.md`
    #[value(name = "project-doc")]
    ProjectDoc,
}

#[derive(Args, Debug, Clone)]
#[group(required = true, multiple = false)]
pub struct TemplateContentSource {
    #[arg(long)]
    pub content: Option<String>,
    #[arg(long)]
    pub file: Option<PathBuf>,
}

pub fn run(args: &CodexPromptsArgs) -> Result<()> {
    let interactive = is_interactive();
    match &args.command {
        None => {
            if interactive {
                return run_wizard();
            }
            bail!("In non-interactive mode, a subcommand is required (gen/list/upsert/rm).");
        }
        Some(CodexPromptsCommand::Gen {
            template,
            scope,
            target,
            override_file,
            name,
            force,
        }) => run_gen(
            template,
            scope,
            target,
            *override_file,
            name.as_deref(),
            *force,
            interactive,
        ),
        Some(CodexPromptsCommand::List) => run_list(),
        Some(CodexPromptsCommand::Upsert { name, content }) => {
            run_upsert(name, content.content.as_deref(), content.file.as_deref())
        }
        Some(CodexPromptsCommand::Rm { name, yes }) => run_rm(name, *yes, interactive),
    }
}

fn run_list() -> Result<()> {
    let config = Config::new()?;
    let rules = prompt_store::list_templates(&config, CODEX_APP)?;
    if rules.is_empty() {
        println!("  {}", t!("errors.no_rules_found"));
        return Ok(());
    }
    for rule in rules {
        println!("  {}", t!("prompt.list.rule_item", name = rule));
    }
    Ok(())
}

fn run_upsert(name: &str, content: Option<&str>, file: Option<&Path>) -> Result<()> {
    let config = Config::new()?;
    let rule_content = if let Some(content) = content {
        content.to_string()
    } else if let Some(file_path) = file {
        fs::read_to_string(file_path)?
    } else {
        return Err(anyhow!(t!("messages.content_or_file_required")));
    };

    let path = prompt_store::upsert_template(&config, CODEX_APP, name, &rule_content)?;
    println!("{}", t!("messages.rule_saved", path = path.display()));
    Ok(())
}

fn run_rm(name: &str, yes: bool, interactive: bool) -> Result<()> {
    if yes {
        let config = Config::new()?;
        prompt_store::remove_template(&config, CODEX_APP, name)?;
        println!("{}", t!("messages.rule_deleted", name = name));
        return Ok(());
    }

    if !interactive {
        return Err(anyhow!(t!(
            "errors.non_interactive_delete_requires_yes",
            name = name
        )));
    }

    let confirm = inquire::Confirm::new(&t!("messages.confirm_delete", name = name))
        .with_default(false)
        .prompt()?;

    if confirm {
        let config = Config::new()?;
        prompt_store::remove_template(&config, CODEX_APP, name)?;
        println!("{}", t!("messages.rule_deleted", name = name));
    } else {
        println!("{}", t!("messages.operation_cancelled"));
    }

    Ok(())
}

fn normalized_targets(targets: &[CodexTargetArg]) -> Vec<CodexTargetArg> {
    if targets.is_empty() {
        return vec![CodexTargetArg::Prompts];
    }
    let mut out = targets.to_vec();
    out.sort();
    out.dedup();
    out
}

fn run_gen(
    template: &str,
    scopes: &[PromptScopeArg],
    targets: &[CodexTargetArg],
    override_file: bool,
    name: Option<&str>,
    force: bool,
    interactive: bool,
) -> Result<()> {
    let targets = normalized_targets(targets);
    if override_file && !targets.contains(&CodexTargetArg::ProjectDoc) {
        return Err(anyhow!(t!("errors.override_requires_agents_target")));
    }

    let config = Config::new()?;
    let content = prompt_store::read_template(&config, CODEX_APP, template)?;

    let output_name = name.unwrap_or(template);
    let output_name = validate_path_segment(output_name, "prompt name")
        .map_err(|e| anyhow!("invalid prompt name: {e}"))?;

    let cwd = cwd()?;

    let mut first_error: Option<anyhow::Error> = None;

    if targets.contains(&CodexTargetArg::Prompts)
        && let Err(e) =
            write_codex_prompt_files(&cwd, &output_name, scopes, force, interactive, &content)
    {
        first_error = Some(e);
    }

    if targets.contains(&CodexTargetArg::ProjectDoc) {
        let body = format!("## llman prompts: {template}\n\n{}", content.trim_end());
        if let Err(e) =
            write_codex_project_doc_files(&cwd, scopes, override_file, force, interactive, &body)
            && first_error.is_none()
        {
            first_error = Some(e);
        }
    }

    if let Some(err) = first_error {
        return Err(err);
    }
    Ok(())
}

fn write_codex_prompt_files(
    cwd: &Path,
    name: &str,
    scopes: &[PromptScopeArg],
    force: bool,
    interactive: bool,
    content: &str,
) -> Result<()> {
    let mut first_error: Option<anyhow::Error> = None;

    for scope in [PromptScopeArg::Global, PromptScopeArg::Project]
        .into_iter()
        .filter(|s| scopes.contains(s))
    {
        let target_path = match codex_prompt_path(cwd, scope, name, force, interactive) {
            Ok(Some(path)) => path,
            Ok(None) => continue,
            Err(e) => {
                if first_error.is_none() {
                    first_error = Some(e);
                }
                continue;
            }
        };

        if target_path.exists() && !force {
            let overwrite = match confirm_overwrite(&target_path, interactive) {
                Ok(v) => v,
                Err(e) => {
                    if first_error.is_none() {
                        first_error = Some(e);
                    }
                    continue;
                }
            };
            if !overwrite {
                println!("{}", t!("messages.operation_cancelled"));
                continue;
            }
        }

        if let Some(parent) = safe_parent_for_creation(&target_path)
            && let Err(e) = fs::create_dir_all(parent)
        {
            if first_error.is_none() {
                first_error = Some(e.into());
            }
            continue;
        }

        if let Err(e) = atomic_write_with_mode(&target_path, content.as_bytes(), None) {
            if first_error.is_none() {
                first_error = Some(e);
            }
            continue;
        }

        println!(
            "{}",
            t!("messages.rule_generated", path = target_path.display())
        );
    }

    if let Some(err) = first_error {
        return Err(err);
    }
    Ok(())
}

fn write_codex_project_doc_files(
    cwd: &Path,
    scopes: &[PromptScopeArg],
    override_file: bool,
    force: bool,
    interactive: bool,
    body: &str,
) -> Result<()> {
    let file_name = if override_file {
        CODEX_AGENTS_OVERRIDE_FILE
    } else {
        CODEX_AGENTS_FILE
    };

    let mut first_error: Option<anyhow::Error> = None;

    for scope in [PromptScopeArg::Global, PromptScopeArg::Project]
        .into_iter()
        .filter(|s| scopes.contains(s))
    {
        let path = match codex_project_doc_path(cwd, scope, file_name, force, interactive) {
            Ok(Some(path)) => path,
            Ok(None) => continue,
            Err(e) => {
                if first_error.is_none() {
                    first_error = Some(e);
                }
                continue;
            }
        };

        match write_llman_managed_block(&path, body, force, interactive) {
            Ok(true) => {
                println!("{}", t!("messages.rule_generated", path = path.display()));
            }
            Ok(false) => {}
            Err(e) => {
                if first_error.is_none() {
                    first_error = Some(e);
                }
            }
        }
    }

    if let Some(err) = first_error {
        return Err(err);
    }
    Ok(())
}

fn codex_prompt_path(
    cwd: &Path,
    scope: PromptScopeArg,
    name: &str,
    force: bool,
    interactive: bool,
) -> Result<Option<PathBuf>> {
    match scope {
        PromptScopeArg::Global => Ok(Some(
            codex_home_dir()?.join("prompts").join(format!("{name}.md")),
        )),
        PromptScopeArg::Project => project_root(cwd, force, interactive).map(|root| {
            root.map(|root| {
                root.join(".codex")
                    .join("prompts")
                    .join(format!("{name}.md"))
            })
        }),
    }
}

fn codex_project_doc_path(
    cwd: &Path,
    scope: PromptScopeArg,
    file_name: &str,
    force: bool,
    interactive: bool,
) -> Result<Option<PathBuf>> {
    match scope {
        PromptScopeArg::Global => Ok(Some(codex_home_dir()?.join(file_name))),
        PromptScopeArg::Project => {
            project_root(cwd, force, interactive).map(|root| root.map(|root| root.join(file_name)))
        }
    }
}

fn run_wizard() -> Result<()> {
    println!("{}", t!("interactive.title"));

    let config = Config::new()?;
    let templates = prompt_store::list_templates(&config, CODEX_APP)?;
    if templates.is_empty() {
        println!("{}", t!("interactive.no_templates"));
        println!("{}", t!("interactive.no_templates_hint"));
        return Ok(());
    }

    let scopes = {
        let options = vec!["project", "global"];
        let picked = MultiSelect::new(&t!("prompt.scope.select"), options).prompt()?;
        let scopes = picked
            .into_iter()
            .filter_map(|p| match p {
                "global" => Some(PromptScopeArg::Global),
                "project" => Some(PromptScopeArg::Project),
                _ => None,
            })
            .collect::<Vec<_>>();
        if scopes.is_empty() {
            println!("{}", t!("messages.operation_cancelled"));
            return Ok(());
        }
        scopes
    };

    let targets = {
        let options = vec!["prompts", CODEX_AGENTS_FILE, CODEX_AGENTS_OVERRIDE_FILE];
        let picked = MultiSelect::new(&t!("prompt.codex.target.select"), options).prompt()?;
        if picked.is_empty() {
            println!("{}", t!("messages.operation_cancelled"));
            return Ok(());
        }
        picked
    };

    let picked_templates =
        MultiSelect::new(&t!("interactive.select_template"), templates).prompt()?;
    if picked_templates.is_empty() {
        println!("{}", t!("messages.operation_cancelled"));
        return Ok(());
    }

    let cwd = cwd()?;
    let interactive = true;

    if targets.contains(&"prompts") {
        for template in &picked_templates {
            let content = prompt_store::read_template(&config, CODEX_APP, template)?;
            let name = validate_path_segment(template, "prompt name")
                .map_err(|e| anyhow!("invalid prompt name: {e}"))?;
            write_codex_prompt_files(&cwd, &name, &scopes, false, interactive, &content)?;
        }
    }

    if targets.contains(&CODEX_AGENTS_FILE) {
        let body = prompt_store::build_llman_prompts_body(&config, CODEX_APP, &picked_templates)?;
        write_codex_project_doc_files(&cwd, &scopes, false, false, interactive, &body)?;
    }

    if targets.contains(&CODEX_AGENTS_OVERRIDE_FILE) {
        let body = prompt_store::build_llman_prompts_body(&config, CODEX_APP, &picked_templates)?;
        write_codex_project_doc_files(&cwd, &scopes, true, false, interactive, &body)?;
    }

    println!("{}", t!("messages.rule_generation_success"));
    Ok(())
}