28 Commits

Author SHA1 Message Date
Xinlu Lai
a4c3f16c2b
not coding, kode is everything 2025-11-05 03:09:11 +08:00
CrazyBoyM
61a8ce0d22 clean code 2025-09-20 15:14:38 +08:00
CrazyBoyM
d4abb2abee clean code 2025-09-20 15:14:38 +08:00
CrazyBoyM
d0d1dca009 upgrade for win & remove some un-use code 2025-09-12 00:44:15 +08:00
Xinlu Lai
f857fb9577
Update README.md 2025-09-03 00:47:22 +08:00
Xinlu Lai
5471b2d5fc
Update README.md 2025-08-30 01:38:51 +08:00
Xinlu Lai
97684a3208
Update README.md 2025-08-30 01:29:04 +08:00
CrazyBoyM
612234cdcc docs: add Windows support announcement to README files
Added update log section announcing Windows support via Git Bash, Unix subsystems,
or WSL (Windows Subsystem for Linux) for all Windows users.

- Added Update Log section to English README
- Added 更新日志 section to Chinese README
- Dated announcement as 2025-08-29
2025-08-29 02:22:14 +08:00
CrazyBoyM
92acc3a002 feat: transition from AGPLv3 to Apache 2.0 license
This is a major license change to better encourage open source contributions
and accelerate the global advancement of AI agent development.

Changes:
- Replace AGPLv3 LICENSE file with Apache 2.0 license text
- Update package.json license field from ISC to Apache-2.0
- Add prominent announcement in both README files about the license change
- Update license badges in README files

The Apache 2.0 license allows free use in both open source and commercial projects
with only attribution requirements, removing barriers to innovation and collaboration.
2025-08-29 02:15:44 +08:00
Xinlu Lai
3d963fb4a6
Update README.md 2025-08-28 04:39:47 +08:00
Xinlu Lai
44421a594e
Update README.md 2025-08-28 04:34:48 +08:00
CrazyBoyM
14e8ee736f docs: Refine security notice for YOLO mode usage
- Clarify YOLO mode should only be used in trusted environments on non-critical projects
- Add strong recommendation for --safe mode when working with important files
- Add guidance for using --safe mode with questionable model capabilities
- Update both English and Chinese README files
2025-08-25 04:36:07 +08:00
CrazyBoyM
6aa73a950a fix: Use local tsx instead of global tsx dependency
- Update cli.js wrapper to use node_modules/.bin/tsx
- Fix ESC key cancellation error display in openai.ts stream processing
- Simplify REPL onCancel function
- Add security notice and model performance recommendations to README
2025-08-25 04:23:44 +08:00
CrazyBoyM
994579fadc feat: Add comprehensive documentation and update README with Bun installation
- Add CLAUDE.md with development guidelines and architecture overview
- Add AGENTS.md for Claude Code compatibility with subagent system details
- Update README.md and README.zh-CN.md with recommended Bun installation method
- Remove bundledDependencies from package.json to fix npm publish hard link issues
- Add .npmignore for proper package distribution
- Remove obsolete CONTEXT.md and next_todo.md files
- Update .gitignore to include AGENTS.md and CLAUDE.md in version control

Key documentation improvements:
- Complete development workflow commands and build system details
- Multi-model architecture explanation with 3-layer design
- Agent system with 5-tier priority configuration loading
- Tool architecture patterns and service layer documentation
- Critical implementation details like async tool descriptions
- Development patterns for adding tools, commands, models, and agents

Installation improvements:
- Bun installation now recommended as fastest method
- Fallback to npm for compatibility
- Clear step-by-step installation instructions in both languages
2025-08-24 05:48:46 +08:00
Xinlu Lai
90a5d2db64
Merge pull request #32 from szis-ai/main
Fix [BUG]ERROR: failed to build: failed to solve: dockerfile parse error on line 54: unknown instruction: /root/.bun/bin/bun
2025-08-24 04:46:48 +08:00
CrazyBoyM
c279f15ba4 Merge shareAI-lab main: integrate Docker support with existing features
- Resolved conflicts in README.md by combining @ mention system docs with Docker usage instructions
- Auto-merged PromptInput.tsx improvements from shareAI-lab
- Added Docker support with .dockerignore and Dockerfile
- Updated Chinese README with latest changes
- Maintains full backward compatibility with existing @ mention and AGENTS.md features
2025-08-24 04:42:07 +08:00
CrazyBoyM
d8f0a22233 feat: Implement intelligent completion system with advanced fuzzy matching
- Add advanced fuzzy matching with 7+ strategies (exact, prefix, substring, acronym, initials, fuzzy, Levenshtein)
- Create comprehensive database of 500+ common Unix commands for smart autocompletion
- Implement intelligent Tab completion with @ prefix injection for agents and files
- Add sophisticated input pattern recognition for commands like "dao", "gp5", "py3"
- Enhance mention system with TaskProgressMessage component for better user feedback
- Update documentation with comprehensive intelligent completion guide
- Clean up 21 temporary markdown files to maintain repository cleanliness
- Improve project structure and configuration documentation
- Optimize completion system performance with advanced caching and scoring
2025-08-22 13:07:48 +08:00
深圳新思-AI研究院
07d05f3837
Update README.md
Fix [BUG]ERROR: failed to build: failed to solve: dockerfile parse error on line 54: unknown instruction: /root/.bun/bin/bun
2025-08-21 16:45:51 +08:00
glide-the
598726fe85 Refactor Dockerfile entrypoint and update README instructions
- Simplified the entrypoint script by removing the dynamic workspace directory creation.
- Updated the command in the entrypoint to use a fixed workspace path.
- Modified README files to include the --no-cache option in the Docker build command for a clean build.
2025-08-13 02:18:31 +08:00
CrazyBoyM
6cf566fb40 feat: Add comprehensive GPT-5 support with Responses API integration
- Add GPT-5 model definitions (gpt-5, gpt-5-mini, gpt-5-nano, gpt-5-chat-latest)
- Implement GPT-5 Responses API support with intelligent fallback to Chat Completions
- Add GPT-5 specific parameter handling (max_completion_tokens, temperature=1)
- Support custom tools and freeform function calling capabilities
- Add reasoning effort and verbosity control parameters
- Implement GPT-5 connection testing service
- Add model capability detection and automatic parameter transformation
- Support both official OpenAI and third-party GPT-5 providers
- Add todo list and sticker request UI components
- Improve notebook support with better type definitions
- Enhance debug logging and error handling for GPT-5
- Update model selector with GPT-5 compatibility checks

This commit provides full GPT-5 support while maintaining backward compatibility with existing models.
2025-08-13 01:38:15 +08:00
glide-the
e768c01010 Update README files to reflect changes from anon-kode to kode in Docker setup instructions 2025-08-13 01:29:04 +08:00
glide-the
3b44c1658a Add Docker support with Dockerfile and .dockerignore
- Introduced Dockerfile for building the application with Node.js 18 on Alpine.
- Configured npm and pip to use China mirrors for faster package installations.
- Added .dockerignore to exclude node_modules from the Docker context.
- Updated README files with Docker usage instructions and configuration details.
2025-08-13 01:26:27 +08:00
CrazyBoyM
7a3c4a7baa Refactor project structure and update documentation
- Update project branding from claude-cli to Kode
- Reorganize documentation with new development guides
- Add CONTRIBUTING.md and Chinese README
- Remove worktree_merge command and relocate system-design.md
- Update dependencies and package configuration
- Improve custom commands service with better error handling
- Clean up storage utilities and debug logging
2025-08-11 21:31:18 +08:00
CrazyBoyM
11a0e46ecc kode with agent-unix-system v1.0.0 2025-08-10 19:57:17 +08:00
Xinlu Lai
b2a9dd0462
Update README.md 2025-07-14 01:31:42 +08:00
Xinlu Lai
08e9f0774c
Update README.md 2025-07-14 01:13:22 +08:00
Xinlu Lai
df8f081b64
Update README.md 2025-07-13 03:51:42 +08:00
Xinlu Lai
f3be98eb08
Initial commit 2025-07-12 22:21:51 +08:00