🔥 microsoft / windows-rs - Rust for Windows
GitHub热门项目 | Rust for Windows | Stars: 12,425 | 2 stars today | 语言: Rust
找到 1430 篇相关文章
GitHub热门项目 | Rust for Windows | Stars: 12,425 | 2 stars today | 语言: Rust
GitHub热门项目 | Visualize, collaborate, and evolve the software architecture with always actual and live diagrams from your code | Stars: 3,649 | 67 stars today | 语言: TypeScript
GitHub热门项目 | Model Context Protocol Servers | Stars: 87,414 | 61 stars today | 语言: TypeScript
GitHub热门项目 | A framework for building agent-native applications. | Stars: 685 | 131 stars today | 语言: TypeScript
GitHub热门项目 | StyleX is the styling system for ambitious user interfaces. | Stars: 9,351 | 26 stars today | 语言: JavaScript
GitHub热门项目 | Extensions for the Zed editor | Stars: 1,758 | 3 stars today | 语言: JavaScript
GitHub热门项目 | GitHub 汉化插件,GitHub 中文化界面。 (GitHub Translation To Chinese) | Stars: 27,319 | 63 stars today | 语言: JavaScript
GitHub热门项目 | A Git-based CMS for Static Site Generators | Stars: 19,157 | 5 stars today | 语言: JavaScript
GitHub热门项目 | Common recipes to run vLLM | Stars: 864 | 9 stars today | 语言: JavaScript
GitHub热门项目 | The open curriculum for learning web development | Stars: 12,664 | 10 stars today | 语言: JavaScript
GitHub热门项目 | AI builders digest — monitors top AI builders on X and YouTube podcasts, remixes their content into digestible summaries. Follow builders, not influencers. | Stars: 5,277 | 25 stars today | 语言: JavaScript
GitHub热门项目 | Qlib is an AI-oriented Quant investment platform that aims to use AI tech to empower Quant Research, from exploring ideas to implementing productions. Qlib supports diverse ML modeling paradigms, including supervised learning, market dynamics modeling, and RL, and is now equipped with https://github.com/microsoft/RD-Agent to automate R&D process. | Stars: 44,719 | 144 stars today | 语言: Python
GitHub热门项目 | | Stars: 31,754 | 480 stars today | 语言: Python
GitHub热门项目 | Free and Open Source Machine Translation API. Self-hosted, offline capable and easy to setup. | Stars: 14,817 | 179 stars today | 语言: Python
GitHub热门项目 | Official Python inference and LoRA trainer package for the LTX-2 audio–video generative model. | Stars: 7,389 | 47 stars today | 语言: Python
GitHub热门项目 | Kilo is the all-in-one agentic engineering platform. Build, ship, and iterate faster with the most popular open source coding agent. | Stars: 21,484 | 1,339 stars today | 语言: TypeScript
GitHub热门项目 | A lightweight, lightning-fast, in-process vector database | Stars: 11,033 | 435 stars today | 语言: C++
GitHub热门项目 | GLM-5: From Vibe Coding to Agentic Engineering | Stars: 3,890 | 286 stars today | 语言:
A few months ago I started building small tools as single HTML files - no npm, no React, no backend. Just one file that opens in a browser and works offline. I built 4 real products this way: DarkenAmber IT Tools - 17+ developer tools in 194KB ZeroOffice - PDF, image, AI tools in one file PrivacyKit - Photo privacy tools, no upload required ElectroKit - Electrical calculator + cost estimates for CIS market Every single one: one .html file. Works offline. Opens instantly. No server. The problem with AI coding assistants Every time I asked Claude or Copilot to build something simple, I got: A React project with src/ folder package.json with 12 dependencies webpack config TypeScript setup ...before writing a single line of actual logic. I kept manually correcting it. "No, one file. No npm. Vanilla JS." Then I realized - I should just teach it once and reuse that knowledge. What is a Claude Skill? A skill is a Markdown file with YAML frontmatter that changes how Claude thinks for a specific context. It is not a prompt. It is not a system message. It is a reusable set of rules that shapes how Claude reasons, what it prioritizes, and what it avoids. yaml--- name: single-file-app description: "Build complete web tools as a single HTML file - vanilla JS, inline CSS, localStorage, offline-first." tags: html vanilla-js offline version: 1.2 --- The two skills I built single-file-app Teaches Claude to build complete web tools in one HTML file. What changes: No React, no npm, no build tools unless truly justified Vanilla JS first, always localStorage for data persistence Dark/light theme with system preference detection Accessibility built in (labels, aria, keyboard nav) XSS prevention for user input Export/import for user data Anti-patterns it prevents: ❌ "Let me set up a React project" ❌ Creating src/ folder for a simple tool ❌ Suggesting npm install for a calculator ✅ "Here is your complete HTML file" ship-it Teaches Claude to bias toward shipping over planning for early-stag
I love Claude Code's subagents. But I kept noticing the same chore: every new project, I'd hand-write the same crew again — a builder, a reviewer, someone to keep the stack conventions straight. Good setups, but they lived in one repo and never got reused. So I built ccteams — a package manager for agent teams. One command drops a ready-made team of Claude Code subagents into your project. npm install -g ccteams ccteams use go-api // apply your favourite team That applies a Go builder + reviewer, tuned for net/http , to the current project. Switch when the work changes: ccteams use next-ts # Next.js App Router + TypeScript + Tailwind ccteams use generalist # scope -> design -> build -> QA -> ship, any stack Are you not sure which team you need? Don't worry, you can use /ccteams:choose-team and AI will choose the best team for you! /plugin marketplace add toffyui/ccteams /plugin install ccteams@ccteams /ccteams:choose-team I want to create a todo app. What's a "team"? A team is just a curated bundle of Claude Code subagents — each a markdown file with the usual name / description / tools frontmatter and a system prompt — plus an orchestration.md that gets merged into your project's CLAUDE.md . Nothing magic, nothing proprietary. It's the setup you'd build by hand, except already built and ready to reuse. ccteams ships with 8 teams: generalist — stack-agnostic, takes a feature scope → design → build → QA → ship next-ts — Next.js App Router + TypeScript + Tailwind frontend — framework-agnostic UI/UX and accessibility go-api — idiomatic Go HTTP APIs python-fastapi — FastAPI + Pydantic v2 rails — Ruby on Rails debug — reproduce → root-cause → fix → regression test research — compares options and recommends; writes no code What use actually does No black box. ccteams use <team> : Copies the team's agents into .claude/agents/ Writes .claude/active-team.md and adds an @.claude/active-team.md import to your CLAUDE.md Tracks everything in .claude/.ccteams-manifest.json so swi