apply

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 5, 2025 License: MIT Imports: 1 Imported by: 0

Documentation

Overview

Package apply provides functionality to execute declarative change plans. It handles the parsing of JSON-based plans and the execution of steps such as file modifications and command execution.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChangePlan

type ChangePlan struct {
	Description string `json:"description"`
	Steps       []Step `json:"steps"`
}

ChangePlan defines the top-level structure for a declarative plan.

type Step

type Step struct {
	Type        string `json:"type"`
	Description string `json:"description"`

	// Fields for "file_modification" type
	Changes codemod.ChangeScript `json:"changes,omitempty"`

	// Fields for "command_execution" type
	Command string   `json:"command,omitempty"`
	Args    []string `json:"args,omitempty"`
}

Step represents a single action in the ChangePlan.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL