ctxdotdev 0.1.2 → 0.1.8
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.
- package/CHANGELOG.md +24 -0
- package/README.md +4 -0
- package/dist/cli/index.js +0 -0
- package/package.json +7 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.2 — 2026-05-30
|
|
4
|
+
|
|
5
|
+
- Improved framework detection (30+ frameworks)
|
|
6
|
+
- Added `ctx watch` command for live file watching
|
|
7
|
+
- Added `ctx template` command for context profiles
|
|
8
|
+
- Added `--format markdown` and `--format json` output
|
|
9
|
+
- Added `--max-depth` flag for scan depth control
|
|
10
|
+
- Added `--no-structure` flag to omit directory tree
|
|
11
|
+
- Fixed git ignore and dot-directory handling
|
|
12
|
+
- Internal refactor of scanner and analyzer modules
|
|
13
|
+
|
|
14
|
+
## 0.1.1 — 2026-05-30
|
|
15
|
+
|
|
16
|
+
- Improved terminal output formatting
|
|
17
|
+
- Dependency updates
|
|
18
|
+
|
|
19
|
+
## 0.1.0 — 2026-05-30
|
|
20
|
+
|
|
21
|
+
- Initial release
|
|
22
|
+
- `ctx` command scans project and copies context to clipboard
|
|
23
|
+
- Supports Node.js, Python, Go, Rust projects
|
|
24
|
+
- Auto-detects frameworks from config files
|
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# ctx — Project Context for AI Coding Tools
|
|
2
2
|
|
|
3
|
+
[](https://github.com/lukeswestun/ctx/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/ctxdotdev)
|
|
5
|
+
[](https://www.npmjs.com/package/ctxdotdev)
|
|
6
|
+
|
|
3
7
|
**One command. Perfect context. Every AI tool.**
|
|
4
8
|
|
|
5
9
|
`ctx` scans your project, detects the framework (Next.js, React, Vue, Django, Express, Go, Rust — 30+), reads config files, analyzes dependencies, and copies a concise context summary to your clipboard. Paste into any AI coding tool.
|
package/dist/cli/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ctxdotdev",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Project context for AI coding tools — one command, perfect context, every AI tool",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ctx": "dist/cli/index.js"
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"files": [
|
|
20
20
|
"dist",
|
|
21
21
|
"README.md",
|
|
22
|
+
"CHANGELOG.md",
|
|
22
23
|
"LICENSE"
|
|
23
24
|
],
|
|
24
25
|
"keywords": [
|
|
@@ -31,6 +32,10 @@
|
|
|
31
32
|
"developer-tools"
|
|
32
33
|
],
|
|
33
34
|
"license": "MIT",
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"provenance": true
|
|
38
|
+
},
|
|
34
39
|
"repository": {
|
|
35
40
|
"type": "git",
|
|
36
41
|
"url": "git+https://github.com/lukeswestun/ctx.git"
|
|
@@ -39,7 +44,7 @@
|
|
|
39
44
|
"node": ">=18"
|
|
40
45
|
},
|
|
41
46
|
"dependencies": {
|
|
42
|
-
"clipboardy": "^4.0.0",
|
|
47
|
+
"clipboardy": "^4.0.0",
|
|
43
48
|
"commander": "^12.0.0",
|
|
44
49
|
"fast-glob": "^3.3.2",
|
|
45
50
|
"ignore": "^5.3.1"
|