Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# XibeCode - AI Coding Assistant

> **Production-ready autonomous coding agent powered by Claude AI**
> **Production-ready autonomous coding agent**

XibeCode is a professional CLI tool that brings autonomous AI coding capabilities to your terminal. Like Claude Code, but open-source, customizable, and with advanced context management.
XibeCode is a professional CLI tool that brings autonomous AI coding capabilities to your terminal. Open-source, customizable, and with advanced context management.

## 🆕 What's New in v0.1.8

Expand Down Expand Up @@ -1003,7 +1003,9 @@ Contributions welcome! Please see CONTRIBUTING.md

## 📝 License

MIT
Apache License 2.0 — see [LICENSE](LICENSE) for details.

Copilot AI Feb 13, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README references a LICENSE file that does not exist in the repository. According to the PR description checklist, an Apache 2.0 LICENSE file should be added as part of this PR. The LICENSE file needs to be created before merging.

Suggested change
Apache License 2.0 — see [LICENSE](LICENSE) for details.
Licensed under the Apache License, Version 2.0. See https://www.apache.org/licenses/LICENSE-2.0 for details.

Copilot uses AI. Check for mistakes.

Copyright 2026 Anish Kumar (R3AP3R editz)
Comment on lines +1006 to +1008

Copilot AI Feb 13, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to the PR description checklist, a NOTICE file should be created as part of this PR (item 3). The NOTICE file is missing from the PR. Additionally, the PR description mentions creating CODE_OF_CONDUCT.md and CONTRIBUTING.md (item 4), which are also missing. Please add these files to complete the PR.

Copilot uses AI. Check for mistakes.

## 🙏 Credits

Expand All @@ -1016,8 +1018,6 @@ Built with:
- [Chalk](https://github.com/chalk/chalk)
- [fast-glob](https://github.com/mrmlnc/fast-glob)

Inspired by [Claude Code](https://www.anthropic.com/news/claude-code) and [Aider](https://github.com/paul-gauthier/aider)

---

**Made with ❤️ for developers who love AI-assisted coding**
Expand Down
12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,18 @@
"assistant",
"autonomous",
"agent",
"claude",
"anthropic",
"automation"
],
"author": "",
"license": "MIT",
"author": "Anish Kumar (R3AP3R editz)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/xibecode"
"url": "https://github.com/iotserver24/xibecode.git"
},
"bugs": {
"url": "https://github.com/yourusername/xibecode/issues"
"url": "https://github.com/iotserver24/xibecode/issues"
},
"homepage": "https://github.com/yourusername/xibecode#readme",
"homepage": "https://github.com/iotserver24/xibecode#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@modelcontextprotocol/sdk": "^1.26.0",
Expand Down
8 changes: 4 additions & 4 deletions site/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import Footer from '@/components/Footer';

export const metadata: Metadata = {
title: 'XibeCode — Autonomous AI Coding Assistant',
description: 'Production-ready autonomous coding agent powered by Claude AI. Open-source, free, and fully customizable with smart context management, MCP support, and plugin system.',
keywords: ['XibeCode', 'AI coding assistant', 'autonomous agent', 'Claude AI', 'CLI tool', 'open source', 'MCP'],
authors: [{ name: 'iotserver24', url: 'https://github.com/iotserver24' }],
description: 'Production-ready autonomous coding agent. Open-source, free, and fully customizable with smart context management, MCP support, and plugin system.',
keywords: ['XibeCode', 'AI coding assistant', 'autonomous agent', 'CLI tool', 'open source', 'MCP'],
authors: [{ name: 'Anish Kumar', url: 'https://github.com/iotserver24' }],
openGraph: {
title: 'XibeCode — Autonomous AI Coding Assistant',
description: 'Production-ready autonomous coding agent powered by Claude AI. Free and open-source.',
description: 'Production-ready autonomous coding agent. Free and open-source.',
type: 'website',
},
};
Expand Down
2 changes: 1 addition & 1 deletion site/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function Footer() {
<span className="text-lg font-bold text-gradient">XibeCode</span>
</div>
<p className="text-sm text-zinc-500 max-w-md mb-4 leading-relaxed">
Production-ready autonomous coding agent powered by Claude AI.
Production-ready autonomous coding agent.
Open-source, free, and fully customizable with smart context management and MCP support.
</p>
<p className="text-xs text-zinc-600">
Expand Down
2 changes: 1 addition & 1 deletion site/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function Hero() {
className="text-lg md:text-xl text-zinc-400 max-w-xl leading-relaxed"
>
Autonomous AI coding assistant that builds features, fixes bugs,
refactors code, and runs tests — all from your terminal. Powered by Claude AI.
refactors code, and runs tests — all from your terminal.
</motion.p>

<motion.div
Expand Down
Loading