davinci 0.0.0 → 0.1.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.
Files changed (3) hide show
  1. package/README.md +41 -0
  2. package/dist/index.js +42605 -0
  3. package/package.json +38 -5
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Davinci CLI
2
+
3
+ Set up Claude Code in one command. Batteries included, fully configurable.
4
+
5
+ ## The Problem
6
+
7
+ Setting up Claude Code for a project means manually installing plugins, writing rule files, and repeating the process for every new project. The choices are the same each time, but the busywork isn't.
8
+
9
+ ## How It Works
10
+
11
+ Davinci scans your project, detects your languages and stacks, then installs the right plugins and writes tailored rule files. It ships with opinionated defaults that work out of the box, but lets you pick exactly which plugins and rules to include. Every rule lives in your project as Markdown — yours to edit, remove, or extend.
12
+
13
+ **Supported languages:** TypeScript, Python, Go, Java
14
+
15
+ **Supported stacks:** Next.js, React, Django, Spring Boot, Docker, Supabase, Cloudflare Workers
16
+
17
+ ## Usage
18
+
19
+ Run this inside your project (make sure git is initialized):
20
+
21
+ ```sh
22
+ npx davinci
23
+ ```
24
+
25
+ ### Options
26
+
27
+ | Flag | Description |
28
+ |------|-------------|
29
+ | `-y, --yes` | Accept all detected defaults without prompting |
30
+ | `--path <dir>` | Target a specific directory (defaults to cwd) |
31
+
32
+ ## Alternatives
33
+
34
+ - **[everything-claude-code](https://github.com/affaan-m/everything-claude-code)** — Does many things well, but installs rules globally (invisible to the project), and bundles features already covered by official Claude Code plugins.
35
+ - **[claude-code-templates](https://github.com/davila7/claude-code-templates)** — Huge library of agents, commands, and MCPs with monitoring, but no automatic project detection or curated defaults.
36
+
37
+ ---
38
+
39
+ Built by [DAVINCI CODING](https://davincicoding.ch).
40
+
41
+ Special thanks to [Thomas Rasshofer](https://thomasrasshofer.com/) for generously passing on the `davinci` name on npm.