Remove dead passive suggestion code, stub cloud listener, rename input placeholders to Galaxy, add future LSP plan to GALAXY.md
This commit is contained in:
+21
-21
@@ -414,26 +414,26 @@ const AGENT_MODE_AI_DISABLED_AUTODETECTION_DISABLED_HINT_TEXT: &str = "Run comma
|
||||
|
||||
// Rotating hint text options for new Agent Mode conversations
|
||||
const AGENT_MODE_HINT_OPTIONS: &[&str] = &[
|
||||
"Warp anything e.g. Deploy my React app to Vercel and set up environment variables",
|
||||
"Warp anything e.g. Help me debug why my Python tests are failing in CI",
|
||||
"Warp anything e.g. Set up a new microservice with Docker and create the deployment pipeline",
|
||||
"Warp anything e.g. Find and fix the memory leak in my Node.js application",
|
||||
"Warp anything e.g. Create a backup script for my PostgreSQL database and schedule it",
|
||||
"Warp anything e.g. Help me migrate my data from MySQL to PostgreSQL",
|
||||
"Warp anything e.g. Set up monitoring and alerts for my AWS infrastructure",
|
||||
"Warp anything e.g. Build a REST API for my mobile app using FastAPI",
|
||||
"Warp anything e.g. Help me optimize my SQL queries that are running slowly",
|
||||
"Warp anything e.g. Create a GitHub Actions workflow to automatically deploy on merge",
|
||||
"Warp anything e.g. Set up Redis caching for my web application",
|
||||
"Warp anything e.g. Help me troubleshoot why my Kubernetes pods keep crashing",
|
||||
"Warp anything e.g. Build a data pipeline to process CSV files and load them into BigQuery",
|
||||
"Warp anything e.g. Set up SSL certificates and configure HTTPS for my domain",
|
||||
"Warp anything e.g. Help me refactor this legacy code to use modern design patterns",
|
||||
"Warp anything e.g. Create unit tests for my authentication service",
|
||||
"Warp anything e.g. Set up log aggregation with ELK stack for my distributed system",
|
||||
"Warp anything e.g. Help me implement OAuth2 authentication in my Express.js app",
|
||||
"Warp anything e.g. Optimize my Docker images to reduce build times and size",
|
||||
"Warp anything e.g. Set up A/B testing infrastructure for my web application",
|
||||
"Ask Galaxy e.g. Deploy my React app to Vercel and set up environment variables",
|
||||
"Ask Galaxy e.g. Help me debug why my Python tests are failing in CI",
|
||||
"Ask Galaxy e.g. Set up a new microservice with Docker and create the deployment pipeline",
|
||||
"Ask Galaxy e.g. Find and fix the memory leak in my Node.js application",
|
||||
"Ask Galaxy e.g. Create a backup script for my PostgreSQL database and schedule it",
|
||||
"Ask Galaxy e.g. Help me migrate my data from MySQL to PostgreSQL",
|
||||
"Ask Galaxy e.g. Set up monitoring and alerts for my AWS infrastructure",
|
||||
"Ask Galaxy e.g. Build a REST API for my mobile app using FastAPI",
|
||||
"Ask Galaxy e.g. Help me optimize my SQL queries that are running slowly",
|
||||
"Ask Galaxy e.g. Create a GitHub Actions workflow to automatically deploy on merge",
|
||||
"Ask Galaxy e.g. Set up Redis caching for my web application",
|
||||
"Ask Galaxy e.g. Help me troubleshoot why my Kubernetes pods keep crashing",
|
||||
"Ask Galaxy e.g. Build a data pipeline to process CSV files and load them into BigQuery",
|
||||
"Ask Galaxy e.g. Set up SSL certificates and configure HTTPS for my domain",
|
||||
"Ask Galaxy e.g. Help me refactor this legacy code to use modern design patterns",
|
||||
"Ask Galaxy e.g. Create unit tests for my authentication service",
|
||||
"Ask Galaxy e.g. Set up log aggregation with ELK stack for my distributed system",
|
||||
"Ask Galaxy e.g. Help me implement OAuth2 authentication in my Express.js app",
|
||||
"Ask Galaxy e.g. Optimize my Docker images to reduce build times and size",
|
||||
"Ask Galaxy e.g. Set up A/B testing infrastructure for my web application",
|
||||
];
|
||||
|
||||
fn get_agent_mode_new_conversation_hint_text() -> &'static str {
|
||||
@@ -5141,7 +5141,7 @@ impl Input {
|
||||
}
|
||||
(InputType::AI, _) => {
|
||||
// Follow the `agent_indicator` pattern (see `app/src/tab.rs`):
|
||||
// * `None` (no conversation, empty, passive, or untitled) => new conversation => "Warp anything"
|
||||
// * `None` (no conversation, empty, passive, or untitled) => new conversation => "Ask Galaxy"
|
||||
// * `InProgress` => agent running => "Steer"
|
||||
// * Any other status => finished => "Ask a follow up"
|
||||
match self
|
||||
|
||||
Reference in New Issue
Block a user