use-planning 0.0.1

AI planning metadata primitives for RustUse.
Documentation
  • Coverage
  • 1.18%
    1 out of 85 items documented1 out of 31 items with examples
  • Size
  • Source code size: 10.65 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.25 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 4s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-ai
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-planning

AI planning metadata primitives for RustUse.

Experimental

use-planning is experimental while use-ai remains below 0.3.0.

Example

use use_planning::{PlanName, PlanPriority, PlanStepKind};

let name = PlanName::new("resolve-ticket")?;

assert_eq!(name.as_str(), "resolve-ticket");
assert_eq!("call tool".parse::<PlanStepKind>()?, PlanStepKind::CallTool);
assert_eq!(PlanPriority::Urgent.as_str(), "urgent");
# Ok::<(), use_planning::PlanningError>(())

Scope

  • Plan names, identifiers, step identifiers, step kinds, status, priority, dependencies, execution modes, review status, and risk labels.
  • Metadata only.

Non-goals

  • Building plans, running steps, calling tools, reviewing outcomes, or enforcing execution constraints.

License

Licensed under either Apache-2.0 or MIT.