ferrify-syntax 0.1.0

Ferrify patch planning and edit-budget enforcement.
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented1 out of 3 items with examples
  • Size
  • Source code size: 8.08 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.49 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 1m 2s Average build duration of successful builds.
  • all releases: 46s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • hghalebi/Ferrify
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • hghalebi

Patch planning and budget enforcement.

agent-syntax is where Ferrify turns a broad change plan into a narrower patch plan. In the current starter implementation it does not rewrite source files. Instead, it enforces the patch budget and produces explicit anchors that explain why each file was selected.

That distinction matters: the rest of the workspace can already reason about bounded implementation, verification, and reporting without pretending that AST-level edits exist before they do.

Examples

use std::collections::BTreeSet;

use agent_domain::{
    ApiImpact, BlastRadius, ChangeIntent, ChangePlan, OutcomeSpec, PatchBudget, RepoPath,
    ScopeBoundary, SemanticConcern, TaskKind, VerificationKind, VerificationPlan,
};
use agent_syntax::PatchPlanner;

# fn main() -> Result<(), agent_domain::DomainTypeError> {
let mut target_files = BTreeSet::new();
target_files.insert(RepoPath::new("crates/agent-cli/src/main.rs")?);

let mut required = BTreeSet::new();
required.insert(VerificationKind::CargoCheck);

let change_plan = ChangePlan {
    intent: ChangeIntent {
        task_kind: TaskKind::CliEnhancement,
        goal: "tighten CLI reporting".to_owned(),
        desired_outcome: OutcomeSpec {
            summary: "narrow the CLI plan".to_owned(),
        },
        scope_boundary: ScopeBoundary {
            in_scope: Vec::new(),
            out_of_scope: Vec::new(),
            blast_radius_limit: BlastRadius::Small,
        },
        success_evidence: Vec::new(),
        primary_risks: Vec::new(),
    },
    concern: SemanticConcern::FeatureAdd,
    target_files,
    selected_mode: "implementer".parse()?,
    api_impact: ApiImpact::InternalOnly,
    patch_budget: PatchBudget {
        max_files: 1,
        max_changed_lines: 40,
        allow_manifest_changes: false,
    },
    verification_plan: VerificationPlan { required },
    notes: vec!["limit the edit to the CLI entrypoint".to_owned()],
};

let patch_plan = PatchPlanner::build(&change_plan);
assert_eq!(patch_plan.target_files.len(), 1);
# Ok(())
# }