Conversation
Replace the local proto/ directory with a git submodule pointing to https://github.com/centy-io/proto.git, and update the entire codebase to align with the canonical proto definitions. The new proto removed all deprecated Issue/Doc-specific RPCs in favor of generic item CRUD operations (GetItem, ListItems, SearchItems, UpdateItem, DeleteItem, etc.) and the GenericItem type replaces the old Issue and Doc types. Key changes: - Add proto git submodule (centy-io/proto) - Regenerate src/daemon/generated/ from new proto definitions - Update all gRPC client interfaces (grpc-client-*.ts) to remove deprecated RPCs and use generic item methods - Update all daemon wrapper functions to use generic item API with itemType: 'issues' or itemType: 'docs' discrimination - Replace Issue/Doc types with GenericItem throughout the codebase - Update commands (list, compact, org delete, register project, workspace new/open) for new proto field changes - Delete daemon-get-next-issue-number (RPC removed from proto) - Update all spec files to match new API shapes Temporarily add --no-stash to pre-commit hook to allow committing the submodule transition (lint-staged cannot stash when proto/ transitions from tracked files to a git submodule). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Remove the temporary --no-stash flag added to work around lint-staged's inability to stash during the proto/ submodule transition. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… rule Refactor commands to stay within the 100 non-blank non-comment lines limit enforced by the max-lines ESLint rule. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
.gitmodulesgit submodule update --initworks🤖 Generated with Claude Code