chore: exclude kilocode config files from version control

This commit is contained in:
¨NW¨
2026-04-08 22:38:01 +01:00
parent 795ffa4841
commit cee297b4db
7 changed files with 5 additions and 394 deletions

5
.gitignore vendored
View File

@@ -111,3 +111,8 @@ temp/
# Manus version file (auto-generated, not part of source)
client/public/__manus__/version.json
# Kilocode config and working directories
.kilo/
.manus/
AGENTS.md

View File

@@ -1,34 +0,0 @@
{
"query": "SHOW TABLES;",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway03.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 3Zh4qRMAq8LtV1c.6374c5e14c69 --database ZEGAT83geRq9CNvryykaQv --execute SHOW TABLES;",
"rows": [
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "__drizzle_migrations"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "agentAccessControl"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "agentHistory"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "agentMetrics"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "agents"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "browserSessions"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "toolDefinitions"
},
{
"Tables_in_ZEGAT83geRq9CNvryykaQv": "users"
}
],
"messages": [],
"stdout": "Tables_in_ZEGAT83geRq9CNvryykaQv\n__drizzle_migrations\nagentAccessControl\nagentHistory\nagentMetrics\nagents\nbrowserSessions\ntoolDefinitions\nusers\n",
"stderr": "",
"execution_time_ms": 605
}

View File

@@ -1,202 +0,0 @@
{
"query": "DESCRIBE agents;",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway03.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 3Zh4qRMAq8LtV1c.6374c5e14c69 --database ZEGAT83geRq9CNvryykaQv --execute DESCRIBE agents;",
"rows": [
{
"Field": "id",
"Type": "int",
"Null": "NO",
"Key": "PRI",
"Default": "NULL",
"Extra": "auto_increment"
},
{
"Field": "userId",
"Type": "int",
"Null": "NO",
"Key": "MUL",
"Default": "NULL",
"Extra": ""
},
{
"Field": "name",
"Type": "varchar(255)",
"Null": "NO",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "description",
"Type": "text",
"Null": "YES",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "role",
"Type": "varchar(100)",
"Null": "NO",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "model",
"Type": "varchar(100)",
"Null": "NO",
"Key": "MUL",
"Default": "NULL",
"Extra": ""
},
{
"Field": "provider",
"Type": "varchar(50)",
"Null": "NO",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "temperature",
"Type": "decimal(3,2)",
"Null": "YES",
"Key": "",
"Default": "0.7",
"Extra": ""
},
{
"Field": "maxTokens",
"Type": "int",
"Null": "YES",
"Key": "",
"Default": "2048",
"Extra": ""
},
{
"Field": "topP",
"Type": "decimal(3,2)",
"Null": "YES",
"Key": "",
"Default": "1.0",
"Extra": ""
},
{
"Field": "frequencyPenalty",
"Type": "decimal(3,2)",
"Null": "YES",
"Key": "",
"Default": "0.0",
"Extra": ""
},
{
"Field": "presencePenalty",
"Type": "decimal(3,2)",
"Null": "YES",
"Key": "",
"Default": "0.0",
"Extra": ""
},
{
"Field": "systemPrompt",
"Type": "text",
"Null": "YES",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "allowedTools",
"Type": "json",
"Null": "YES",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "allowedDomains",
"Type": "json",
"Null": "YES",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "maxRequestsPerHour",
"Type": "int",
"Null": "YES",
"Key": "",
"Default": "100",
"Extra": ""
},
{
"Field": "isActive",
"Type": "tinyint(1)",
"Null": "YES",
"Key": "",
"Default": "1",
"Extra": ""
},
{
"Field": "isPublic",
"Type": "tinyint(1)",
"Null": "YES",
"Key": "",
"Default": "0",
"Extra": ""
},
{
"Field": "tags",
"Type": "json",
"Null": "YES",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "metadata",
"Type": "json",
"Null": "YES",
"Key": "",
"Default": "NULL",
"Extra": ""
},
{
"Field": "createdAt",
"Type": "timestamp",
"Null": "NO",
"Key": "",
"Default": "CURRENT_TIMESTAMP",
"Extra": ""
},
{
"Field": "updatedAt",
"Type": "timestamp",
"Null": "NO",
"Key": "",
"Default": "CURRENT_TIMESTAMP",
"Extra": "DEFAULT_GENERATED on update CURRENT_TIMESTAMP"
},
{
"Field": "isSystem",
"Type": "tinyint(1)",
"Null": "NO",
"Key": "",
"Default": "0",
"Extra": ""
},
{
"Field": "isOrchestrator",
"Type": "tinyint(1)",
"Null": "NO",
"Key": "",
"Default": "0",
"Extra": ""
}
],
"messages": [],
"stdout": "Field\tType\tNull\tKey\tDefault\tExtra\nid\tint\tNO\tPRI\tNULL\tauto_increment\nuserId\tint\tNO\tMUL\tNULL\t\nname\tvarchar(255)\tNO\t\tNULL\t\ndescription\ttext\tYES\t\tNULL\t\nrole\tvarchar(100)\tNO\t\tNULL\t\nmodel\tvarchar(100)\tNO\tMUL\tNULL\t\nprovider\tvarchar(50)\tNO\t\tNULL\t\ntemperature\tdecimal(3,2)\tYES\t\t0.7\t\nmaxTokens\tint\tYES\t\t2048\t\ntopP\tdecimal(3,2)\tYES\t\t1.0\t\nfrequencyPenalty\tdecimal(3,2)\tYES\t\t0.0\t\npresencePenalty\tdecimal(3,2)\tYES\t\t0.0\t\nsystemPrompt\ttext\tYES\t\tNULL\t\nallowedTools\tjson\tYES\t\tNULL\t\nallowedDomains\tjson\tYES\t\tNULL\t\nmaxRequestsPerHour\tint\tYES\t\t100\t\nisActive\ttinyint(1)\tYES\t\t1\t\nisPublic\ttinyint(1)\tYES\t\t0\t\ntags\tjson\tYES\t\tNULL\t\nmetadata\tjson\tYES\t\tNULL\t\ncreatedAt\ttimestamp\tNO\t\tCURRENT_TIMESTAMP\t\nupdatedAt\ttimestamp\tNO\t\tCURRENT_TIMESTAMP\tDEFAULT_GENERATED on update CURRENT_TIMESTAMP\nisSystem\ttinyint(1)\tNO\t\t0\t\nisOrchestrator\ttinyint(1)\tNO\t\t0\t\n",
"stderr": "",
"execution_time_ms": 523
}

View File

@@ -1,82 +0,0 @@
{
"query": "SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'agents' AND TABLE_SCHEMA = DATABASE() ORDER BY ORDINAL_POSITION;",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway03.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 3Zh4qRMAq8LtV1c.6374c5e14c69 --database ZEGAT83geRq9CNvryykaQv --execute SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'agents' AND TABLE_SCHEMA = DATABASE() ORDER BY ORDINAL_POSITION;",
"rows": [
{
"COLUMN_NAME": "id"
},
{
"COLUMN_NAME": "userId"
},
{
"COLUMN_NAME": "name"
},
{
"COLUMN_NAME": "description"
},
{
"COLUMN_NAME": "role"
},
{
"COLUMN_NAME": "model"
},
{
"COLUMN_NAME": "provider"
},
{
"COLUMN_NAME": "temperature"
},
{
"COLUMN_NAME": "maxTokens"
},
{
"COLUMN_NAME": "topP"
},
{
"COLUMN_NAME": "frequencyPenalty"
},
{
"COLUMN_NAME": "presencePenalty"
},
{
"COLUMN_NAME": "systemPrompt"
},
{
"COLUMN_NAME": "allowedTools"
},
{
"COLUMN_NAME": "allowedDomains"
},
{
"COLUMN_NAME": "maxRequestsPerHour"
},
{
"COLUMN_NAME": "isActive"
},
{
"COLUMN_NAME": "isPublic"
},
{
"COLUMN_NAME": "tags"
},
{
"COLUMN_NAME": "metadata"
},
{
"COLUMN_NAME": "createdAt"
},
{
"COLUMN_NAME": "updatedAt"
},
{
"COLUMN_NAME": "isSystem"
},
{
"COLUMN_NAME": "isOrchestrator"
}
],
"messages": [],
"stdout": "COLUMN_NAME\nid\nuserId\nname\ndescription\nrole\nmodel\nprovider\ntemperature\nmaxTokens\ntopP\nfrequencyPenalty\npresencePenalty\nsystemPrompt\nallowedTools\nallowedDomains\nmaxRequestsPerHour\nisActive\nisPublic\ntags\nmetadata\ncreatedAt\nupdatedAt\nisSystem\nisOrchestrator\n",
"stderr": "",
"execution_time_ms": 383
}

View File

@@ -1,22 +0,0 @@
{
"query": "SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'agents' AND TABLE_SCHEMA = DATABASE() AND ORDINAL_POSITION > 20 ORDER BY ORDINAL_POSITION;",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway03.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 3Zh4qRMAq8LtV1c.6374c5e14c69 --database ZEGAT83geRq9CNvryykaQv --execute SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'agents' AND TABLE_SCHEMA = DATABASE() AND ORDINAL_POSITION > 20 ORDER BY ORDINAL_POSITION;",
"rows": [
{
"COLUMN_NAME": "createdAt"
},
{
"COLUMN_NAME": "updatedAt"
},
{
"COLUMN_NAME": "isSystem"
},
{
"COLUMN_NAME": "isOrchestrator"
}
],
"messages": [],
"stdout": "COLUMN_NAME\ncreatedAt\nupdatedAt\nisSystem\nisOrchestrator\n",
"stderr": "",
"execution_time_ms": 370
}

View File

@@ -1,46 +0,0 @@
{
"query": "SELECT id, name, role, model, isSystem, isOrchestrator, isActive FROM agents;",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway03.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 3Zh4qRMAq8LtV1c.6374c5e14c69 --database ZEGAT83geRq9CNvryykaQv --execute SELECT id, name, role, model, isSystem, isOrchestrator, isActive FROM agents;",
"rows": [
{
"id": "8",
"name": "Orchestrator",
"role": "orchestrator",
"model": "minimax-m2.7",
"isSystem": "1",
"isOrchestrator": "1",
"isActive": "1"
},
{
"id": "9",
"name": "Browser Agent",
"role": "browser",
"model": "qwen2.5:7b",
"isSystem": "1",
"isOrchestrator": "0",
"isActive": "1"
},
{
"id": "10",
"name": "Tool Builder",
"role": "tool_builder",
"model": "qwen2.5-coder:7b",
"isSystem": "1",
"isOrchestrator": "0",
"isActive": "1"
},
{
"id": "11",
"name": "Agent Compiler",
"role": "agent_compiler",
"model": "qwen2.5:14b",
"isSystem": "1",
"isOrchestrator": "0",
"isActive": "1"
}
],
"messages": [],
"stdout": "id\tname\trole\tmodel\tisSystem\tisOrchestrator\tisActive\n8\tOrchestrator\torchestrator\tminimax-m2.7\t1\t1\t1\n9\tBrowser Agent\tbrowser\tqwen2.5:7b\t1\t0\t1\n10\tTool Builder\ttool_builder\tqwen2.5-coder:7b\t1\t0\t1\n11\tAgent Compiler\tagent_compiler\tqwen2.5:14b\t1\t0\t1\n",
"stderr": "",
"execution_time_ms": 538
}

View File

@@ -1,8 +0,0 @@
{
"query": "SELECT id, name, role, activeModel, isOrchestrator, isSystem, status FROM agents;",
"command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway03.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 3Zh4qRMAq8LtV1c.6374c5e14c69 --database ZEGAT83geRq9CNvryykaQv --execute SELECT id, name, role, activeModel, isOrchestrator, isSystem, status FROM agents;",
"returncode": 1,
"logs": [
"ERROR 1054 (42S22) at line 1: Unknown column 'activemodel' in 'field list'"
]
}