release: v0.2.0 repository hygiene, CI, and docs sync
Stop tracking personal workflow artifacts at repo root, add CI and MIT license, align README and agent skills with artifacts/ defaults, and enable Ruff in dev/CI so releases are verifiable without local-only runs. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.5
Cursor
parent
e70bd35498
commit
6f0df5a774
+8
-8
@@ -14,13 +14,13 @@ from pathlib import Path
|
||||
from typing import Optional
|
||||
from uuid import uuid4
|
||||
|
||||
from .config import Config
|
||||
from .logging_config import get_logger, log_operation
|
||||
from .models import ExecutionPlan, FileOperation, OperationResult, RollbackLog
|
||||
from .quarantine import QuarantineManager
|
||||
from .state import StateManager
|
||||
from .transaction import TransactionLog
|
||||
from .utils import ensure_utc, is_within_root, utc_now
|
||||
from vlm.config import Config
|
||||
from vlm.logging_config import get_logger, log_operation
|
||||
from vlm.models import ExecutionPlan, FileOperation, OperationResult, RollbackLog
|
||||
from vlm.quarantine import QuarantineManager
|
||||
from vlm.state import StateManager
|
||||
from vlm.transaction import TransactionLog
|
||||
from vlm.utils import ensure_utc, is_within_root, utc_now
|
||||
|
||||
|
||||
class ExecutionEngine:
|
||||
@@ -681,7 +681,7 @@ class ExecutionEngine:
|
||||
log_operation(
|
||||
self.logger,
|
||||
logging.DEBUG,
|
||||
f"Skipping rollback of no-op operation",
|
||||
"Skipping rollback of no-op operation",
|
||||
operation_type="rollback",
|
||||
file_path=operation.source_path
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user