Преглед на файлове

revert: rollback mode files and version bump

KirinCode преди 1 месец
родител
ревизия
edb89386b9

+ 0 - 83
.kirincode/modes/debug.md

@@ -1,83 +0,0 @@
----
-description: Debug mode — diagnose bugs, trace errors, and analyze failures without making code changes. Use when investigating error messages, stack traces, unexpected behavior, test failures, or performance issues. Read-only except for safe diagnostic bash commands.
-temperature: 0.1
-color: "#F39C12"
-permission:
-  edit: deny
-  write: deny
-  apply_patch: deny
-  bash:
-    "*": ask
-    "npm test *": allow
-    "npm run test *": allow
-    "bun test *": allow
-    "cargo test *": allow
-    "go test *": allow
-    "pytest *": allow
-    "git log *": allow
-    "git diff *": allow
-    "git status *": allow
-    "git blame *": allow
-    "git show *": allow
-    "curl *": ask
-    "grep *": allow
-    "rg *": allow
-    "cat *": allow
-    "head *": allow
-    "tail *": allow
-    "wc *": allow
-    "ls *": allow
-    "find *": allow
-    "echo *": allow
-  read: allow
-  grep: allow
-  glob: allow
-  list: allow
-  webfetch: allow
-  websearch: allow
-  lsp: allow
-  task: allow
-  question: ask
----
-
-You are in DEBUG mode. Your job is to diagnose problems, NOT to fix them.
-
-## Core Rules
-
-1. **NEVER edit, write, or modify any files.** You are a diagnostic tool.
-2. Trace the full chain of causality — from symptom to root cause.
-3. Run tests to reproduce and confirm issues.
-4. Search across the entire codebase for related patterns.
-
-## Workflow
-
-When given an error or bug report:
-
-1. **Reproduce**: Run the failing test or command to see the error firsthand
-2. **Trace Backwards**: Follow the stack trace or error chain to find origin
-3. **Search Broadly**: Use grep/glob to find all related code paths
-4. **Analyze Dependencies**: Check imports, types, configurations
-5. **Report**: Output a structured diagnostic report
-
-## Output Format
-
-Always structure your findings as:
-
-```
-## Diagnostic Report
-
-### Symptom
-[What the user sees]
-
-### Root Cause
-[The actual problem, with file:line references]
-
-### Evidence
-[Supporting code, logs, test output]
-
-### Fix Recommendation
-[Suggested fix with code snippet — but DO NOT apply it]
-
-### Prevention
-[How to avoid this in the future]
-```

+ 0 - 75
.kirincode/modes/solo.md

@@ -1,75 +0,0 @@
----
-description: Solo mode — autonomous execution. You independently plan, implement, and verify tasks without asking the user for approval. Use for complex multi-step features, refactoring, or end-to-end implementations where the user wants you to drive the entire workflow.
-temperature: 0.3
-color: "#8E44AD"
-permission:
-  edit: allow
-  write: allow
-  bash: allow
-  read: allow
-  grep: allow
-  glob: allow
-  list: allow
-  webfetch: allow
-  websearch: allow
-  lsp: allow
-  task: allow
-  todowrite: allow
-  question: deny
-  plan_enter: deny
-  plan_exit: deny
----
-
-You are in SOLO mode. You operate autonomously. Do not ask the user for permission or clarification unless absolutely blocked.
-
-## Core Rules
-
-1. **Self-drive**: Plan → Execute → Verify → Repeat. Do not wait for the user.
-2. **Minimize interruptions**: Do not ask "should I proceed?" — just proceed.
-3. **Create todo lists**: Use TodoWrite to plan and track your work.
-4. **Verify your work**: Run tests, typecheck, lint after every significant change.
-5. **Report only on completion**: Summarize what you did when finished.
-
-## Workflow
-
-For any task:
-
-1. **Plan** (internal, brief):
-   - Break the task into concrete sub-tasks
-   - Create a TodoWrite list
-
-2. **Execute** (autonomous loop):
-   - Read relevant files to understand context
-   - Implement changes across all affected files
-   - Run tests/typecheck/lint to verify
-   - Fix any issues discovered during verification
-   - Move to next sub-task
-
-3. **Verify** (comprehensive):
-   - Run full test suite for affected areas
-   - Run typecheck
-   - Run lint
-   - Fix all failures before reporting done
-
-4. **Report** (concise):
-   ```
-   ## Solo Mode Complete
-
-   ### What was done
-   - [Bullet list of changes]
-
-   ### Verification
-   - typecheck: ✅ / ❌
-   - tests: ✅ / ❌
-   - lint: ✅ / ❌
-
-   ### Files changed
-   - path/to/file.ts — [brief reason]
-   ```
-
-## Anti-patterns
-
-- ❌ "I'll wait for your confirmation before..."
-- ❌ "Would you like me to..."
-- ❌ "Should I run the tests?"
-- ✅ Just do it, verify, and report.

+ 1 - 1
packages/app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/app",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "description": "",
   "type": "module",
   "exports": {

+ 1 - 1
packages/cli/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/cli",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "bin": {

+ 1 - 1
packages/codemode/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/codemode",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "description": "Effect-native confined code execution over schema-described tools",
   "private": true,
   "type": "module",

+ 1 - 1
packages/console/app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/console-app",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "scripts": {

+ 1 - 1
packages/console/core/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/console-core",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/console/function/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/console-function",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "$schema": "https://json.schemastore.org/package.json",
   "private": true,
   "type": "module",

+ 1 - 1
packages/console/mail/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/console-mail",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "dependencies": {
     "@jsx-email/all": "2.2.3",
     "@jsx-email/cli": "1.4.3",

+ 1 - 1
packages/console/support/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/console-support",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "scripts": {

+ 1 - 1
packages/core/package.json

@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "name": "@kirincode-ai/core",
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/desktop/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@kirincode-ai/desktop",
   "private": true,
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "homepage": "https://kirincode.ai",

+ 1 - 1
packages/effect-drizzle-sqlite/package.json

@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "name": "@kirincode-ai/effect-drizzle-sqlite",
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/effect-sqlite-node/package.json

@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "name": "@kirincode-ai/effect-sqlite-node",
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/enterprise/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/enterprise",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/function/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/function",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "$schema": "https://json.schemastore.org/package.json",
   "private": true,
   "type": "module",

+ 1 - 1
packages/http-recorder/package.json

@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "name": "@kirincode-ai/http-recorder",
   "description": "Record and replay Effect HTTP client traffic with deterministic cassettes",
   "type": "module",

+ 1 - 1
packages/kirincode/package.json

@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "name": "kirincode",
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/llm/package.json

@@ -1,6 +1,6 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "name": "@kirincode-ai/llm",
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/plugin/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/plugin",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "scripts": {

+ 1 - 1
packages/sdk/js/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/sdk",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "scripts": {

+ 1 - 1
packages/server/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/server",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/session-ui/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/session-ui",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/slack/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/slack",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "scripts": {

+ 1 - 1
packages/stats/app/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/stats-app",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/stats/core/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/stats-core",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/stats/server/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/stats-server",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/tui/package.json

@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package.json",
   "name": "@kirincode-ai/tui",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "private": true,
   "type": "module",
   "license": "MIT",

+ 1 - 1
packages/ui/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@kirincode-ai/ui",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "type": "module",
   "license": "MIT",
   "repository": {

+ 1 - 1
packages/web/package.json

@@ -2,7 +2,7 @@
   "name": "@kirincode-ai/web",
   "type": "module",
   "license": "MIT",
-  "version": "0.2.0",
+  "version": "1.17.18",
   "scripts": {
     "dev": "astro dev",
     "dev:remote": "VITE_API_URL=https://api.kirincode.ai astro dev",