Skip to content

Commit 59ccc0d

Browse files
authored
Merge pull request #59 from ruvnet/codespace-bug-free-goggles-g5pvgx5gqpcwq54
🚀 agentic-jujutsu v1.0.0: npm package with comprehensive tutorial documentation
2 parents 9323f8e + 2001814 commit 59ccc0d

File tree

676 files changed

+184084
-4231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

676 files changed

+184084
-4231
lines changed

.npmignore

Lines changed: 59 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,46 @@
1-
# Build artifacts and caches
1+
# Development and Build Artifacts
22
node_modules/
33
.git/
44
.vscode/
5+
.idea/
56
*.log
67
*.tgz
8+
*.DS_Store
79

8-
# Monorepo packages (they have their own npm packages)
10+
# Build caches
11+
dist/
12+
.tsbuildinfo
13+
*.tsbuildinfo
14+
15+
# Source files (only ship compiled dist/)
16+
src/
17+
tsconfig.json
18+
agentic-flow/src/
19+
agentic-flow/config/
20+
21+
# Monorepo packages (excluded from main package)
922
packages/
10-
agent-booster/
11-
reasoningbank/
23+
agent-booster/src/
24+
agent-booster/tests/
25+
reasoningbank/src/
26+
reasoningbank/tests/
1227

1328
# Rust build artifacts (causing hard link issues)
1429
**/target/
1530
**/.cargo/
1631
target/
1732
.cargo/
33+
crates/
1834

1935
# ALL Rust-related that might have hard links
2036
*.rlib
2137
*.rmeta
2238
*.d
39+
*.rs
2340
build-script-build*
2441
build_script_build*
42+
Cargo.toml
43+
Cargo.lock
2544

2645
# Test and development files
2746
tests/
@@ -32,6 +51,9 @@ coverage/
3251
*.test.js
3352
*.spec.ts
3453
*.spec.js
54+
agentic-flow/tests/
55+
agentic-flow/validation/
56+
agentic-flow/benchmark/
3557

3658
# Docker and CI files
3759
docker/
@@ -44,21 +66,52 @@ docker-compose*.yml
4466
docs/archived/
4567
docs/development/
4668
docs/validation/
47-
agentdb.db-shm
48-
agentdb.db-wal
69+
docs/benchmarks/
70+
agentdb.db*
4971
open-lovable/
72+
analysis/
5073

5174
# Environment and config
5275
.env
5376
.env.*
5477
*.local
78+
.env.docker-test
5579

5680
# Temporary files
5781
tmp/
5882
temp/
5983
.cache/
84+
*.db
85+
*.db-shm
86+
*.db-wal
87+
*.db-journal
88+
*.sqlite
89+
*.sqlite-journal
90+
*.sqlite-wal
6091

6192
# Large unnecessary directories
6293
examples/
6394
releases/
6495
scripts/
96+
benchmarks/
97+
bench/
98+
99+
# Build scripts (keep only postinstall)
100+
agentic-flow/scripts/*
101+
!agentic-flow/scripts/postinstall.js
102+
103+
# Web/frontend artifacts
104+
index.html
105+
vite.config.ts
106+
tailwind.config.ts
107+
108+
# Python files
109+
*.py
110+
*.pyc
111+
__pycache__/
112+
Python/
113+
python/
114+
115+
# Validation and test configs
116+
agentic-llm/
117+
validation/

.npmrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# NPM configuration for agentic-flow package
2+
3+
# Publishing configuration
4+
registry=https://registry.npmjs.org/
5+
access=public
6+
7+
# Build optimization
8+
fund=false
9+
save-exact=false
10+
package-lock=true
11+
12+
# Security
13+
audit=true
14+
audit-level=moderate
15+
16+
# Installation optimization
17+
prefer-offline=false
18+
progress=true
19+
20+
# Legacy peer dependencies handling
21+
legacy-peer-deps=false
22+
strict-peer-dependencies=false

0 commit comments

Comments
 (0)