tycono 0.1.106 → 0.1.107-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tycono",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.107-beta.0",
|
|
4
4
|
"description": "Build an AI company. Watch them work.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@types/express": "^5.0.0",
|
|
54
54
|
"@types/node": "^22.13.4",
|
|
55
55
|
"@types/react": "^19.2.14",
|
|
56
|
+
"react-devtools-core": "^4.28.5",
|
|
56
57
|
"tsup": "^8.5.1",
|
|
57
58
|
"typescript": "^5.7.3"
|
|
58
59
|
},
|
|
@@ -45,7 +45,7 @@ function isSystemNoise(text: string): boolean {
|
|
|
45
45
|
if (/^##\s*Your Role/i.test(t)) return true;
|
|
46
46
|
if (t.includes('무엇을 도와드릴까요')) return true;
|
|
47
47
|
// Conversation context leakage
|
|
48
|
-
if (t.startsWith('[Previous execution
|
|
48
|
+
if (t.startsWith('[Previous execution')) return true;
|
|
49
49
|
if (/^Tools used:/i.test(t)) return true;
|
|
50
50
|
return false;
|
|
51
51
|
}
|
|
@@ -275,7 +275,7 @@ function StreamLineRow({ line }: { line: StreamLine }) {
|
|
|
275
275
|
);
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
const QUICK_ACTIONS = ['waves', 'agents', 'sessions', 'docs'] as const;
|
|
278
|
+
const QUICK_ACTIONS = ['waves', 'agents', 'sessions', 'ports', 'docs'] as const;
|
|
279
279
|
type QuickAction = typeof QUICK_ACTIONS[number];
|
|
280
280
|
|
|
281
281
|
export const CommandMode: React.FC<CommandModeProps> = ({
|