Skip to content

Commit cd969cb

Browse files
committedJun 7, 2024·
Merge branch 'main' of github.com:transitive-bullshit/agentic-old into old-agentic-v1
* 'main' of github.com:transitive-bullshit/agentic-old: (338 commits) chore: bump deps chore: bump deps and pin prettier until sort plugin supports v3 docs: add TSDoc comments docs: add TSDoc comments feat: allow disabling task tracking via terminal feat: make options object optional feat: initialize default model providers feat: set model param defaults feat: upgrade to API of new Anthropic SDK chore: bump dependencies feat: allow setting model via env, rename opt to modelDefaults, and fix setting of retryConfig fix: improve types via overloading feat: add pause message feat: format output differently depending on mechanism feat: improve clear perf, toggle cursor, and resume key listeners fix: avoid truncating to e.g. preserve valid JSON feat: properly indent task outputs feat: support separator fix: remove unused symbol chore: add eventemitter3 dep ...
2 parents bd23269 + f5e2499 commit cd969cb

File tree

158 files changed

+23006
-0
lines changed

Some content is hidden

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

158 files changed

+23006
-0
lines changed
 

‎.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
tab_width = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[{*.json,*.json.example,*.gyp,*.yml,*.yaml}]
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.md]
17+
trim_trailing_whitespace = false
18+
19+
[*.js]
20+
quote_type = single

‎.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
scratch/
3+
docs/

0 commit comments

Comments
 (0)
Please sign in to comment.