project.yaml is fresh and declares version 2.0.0-dev — a clean break from Python clide's v1.2.0 (which remains under legacy/). It carries module path, toolchain pins (go >=1.25, Flutter stable, Dart >=3.5), and the Gitea repository URL. Same schema as the Makefile will read via awk for sidecar version stamping. README.md and LICENSE land alongside. The README pitches the rebuild tersely and points at docs/initial-plan.md for the full story; the Python README is preserved under legacy/README.md. .gitignore is rewritten for the new toolchain. The previous file was wall-to-wall Python rules; now the root ignores Flutter/Dart/Go build output plus the usual OS/editor/secrets/.claude-local entries, and Python-specific rules scope to legacy/** so they don't fire on any stray caches at the repo root. .editorconfig sets tabs for Go, two-space for Dart and everything else, and the usual EOL + trailing-whitespace rules. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
# clide — project manifest
|
|
#
|
|
# Single source of truth for project metadata. Read by:
|
|
# - the Makefile (VERSION ldflag for the sidecar)
|
|
# - the Flutter app's build-info surface
|
|
# - any future Claude Code skill (compatibility check)
|
|
# - any other consumer that needs to know "what is this project,
|
|
# what version of it is on disk right now"
|
|
#
|
|
# Convention: this file declares the version the codebase *claims to be*.
|
|
# Local `make build` stamps that version + git short SHA + dirty marker
|
|
# into the sidecar binary and (when wired) into the Flutter app.
|
|
# Tagged releases use the git tag for binaries; project.yaml `version:`
|
|
# is bumped in the post-release commit alongside the changelog move.
|
|
#
|
|
# Lineage: Python clide reached v1.2.0 under legacy/. The Flutter
|
|
# rebuild starts fresh at v2.0.0-dev to signal a clean break.
|
|
|
|
name: clide
|
|
description: Flutter desktop IDE for Claude Code — markdown-first, pql-powered, with a Go sidecar.
|
|
version: 2.0.0-dev
|
|
status: pre-v2.0, scaffolding (Tier 0 — Flutter app + sidecar handshake — is next)
|
|
|
|
repository: ssh://git@git.schweitz.net:2222/jpmschweitzer/clide.git
|
|
license: MIT
|
|
# Go sidecar module path. Gitea-hosted; Go module resolution works if
|
|
# the host serves the meta tags, otherwise a vanity path can be added.
|
|
module: git.schweitz.net/jpmschweitzer/clide/sidecar
|
|
|
|
# Toolchain pins. Mirror in sidecar/go.mod and app/pubspec.yaml when bumping.
|
|
go_version: ">=1.25"
|
|
flutter_channel: stable
|
|
dart_sdk: ">=3.5.0 <4.0.0"
|
|
|
|
maintainers:
|
|
- name: Jeroen Schweitzer
|
|
email: jpmschweitzer@gmail.com
|
|
|
|
keywords:
|
|
- ide
|
|
- flutter
|
|
- claude-code
|
|
- markdown
|
|
- pql
|
|
- canvas
|
|
- graph
|
|
- agent-tools
|