meta-ast 0.5.0

Polyglot static-analysis engine: extract symbols and cross-language dependency graphs from 9 supported source languages, with optional MetaCall deployment manifest generation.
Documentation
# RFC 0003: Incremental Parsing Strategy

## Status

Accepted

## Context

Proposal target includes incremental responsiveness (<100ms for files under 5k LOC).

## Decision

Adopt a staged approach:

1. Correct baseline implementation first.
2. Incremental optimization with `InputEdit` and changed-range narrowing behind benchmark evidence.

## Alternatives considered

1. Full incremental complexity from day one.
2. Full reparse forever.

## Rationale

Correctness-first minimizes early defect risk; benchmark-driven optimization avoids premature complexity.

## Consequences

- Early versions may reparse more broadly.
- Optimization milestones are explicitly measurable.