Cloud Agent: prompt autocomplete (ghost text)#5
Closed
markijbema wants to merge 1 commit intomainfrom
Closed
Conversation
Implements ghost-text prompt autocomplete for the Cloud Agent chat input. - Adds cloudAgent.getChatCompletion tRPC mutation - Adds client-side ghost text hook and overlay rendering in ChatInput - Adds minimal CSS for ghost text styling - Improves error handling in llm-proxy-helpers Accept suggestion: Tab (all), ArrowRight (next word), Escape clears.
|
This Pull Request has been inactive for 30 days and will be closed in 7 days if no further activity occurs. Please update or close this PR if it is no longer relevant. |
|
This Pull Request has been closed due to inactivity. |
Open
42 tasks
jrf0110
added a commit
that referenced
this pull request
Apr 3, 2026
…review fixes - Fix #1: Add WHERE clause to updateConfig (config.ts accepts wastelandId param) - Fix #2: Update router.ts and ownership.ts imports from stub to Wasteland.do - Fix #3: initializeWasteland/storeCredential/updateConfig now return records - Fix #4: Implement all 6 missing RPC methods (updateMember, connectTown, disconnectTown, listConnectedTowns, getWantedBoard, refreshWantedBoard) - Fix #5: Synchronous initializeDatabase(), no ensureInitialized/initPromise - Fix #7: Delete WastelandDO.stub.ts New files: - 5 table definitions under db/tables/ (config, members, credentials, connected-towns, wanted-cache) - 5 sub-modules under dos/wasteland/ with business logic - Wasteland.do.ts: thin DO class delegating to sub-modules
Contributor
|
Due to the monorepo restructure you will need to recreate this PR on a new branch from main. Pass the prompt found at, https://github.com/Kilo-Org/cloud/blob/main/plans/monorepo-migration-prompt.md, to your coding agent while running in this branch. Please close this PR once done or if you don't plan to proceed with it. |
kilo-code-bot bot
added a commit
that referenced
this pull request
Apr 7, 2026
Implements ghost-text prompt autocomplete for the Cloud Agent chat input (based on original PR #5 by @markijbema, rebased on monorepo main). - Adds `cloudAgent.getFimAutocomplete` tRPC mutation using Mistral Codestral FIM - Adds `useChatGhostText` hook with debounced completion requests - Adds ghost text overlay rendering in `cloud-agent-next` ChatInput - Accept suggestion: Tab (all), ArrowRight (next word), Escape clears - Improves error handling in `sendProxiedChatCompletion`
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.
Implements ghost-text prompt autocomplete for the Cloud Agent chat input (based on kilocode-backend PR #3966).
cloudAgent.getFimAutocompletetRPC mutationAccept suggestion: Tab (all), ArrowRight (next word), Escape clears.