aider-ce 0.88.20__py3-none-any.whl → 0.88.38__py3-none-any.whl

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 (113) hide show
  1. aider/__init__.py +1 -1
  2. aider/_version.py +2 -2
  3. aider/args.py +63 -43
  4. aider/coders/agent_coder.py +331 -79
  5. aider/coders/agent_prompts.py +3 -15
  6. aider/coders/architect_coder.py +21 -5
  7. aider/coders/base_coder.py +661 -413
  8. aider/coders/base_prompts.py +6 -3
  9. aider/coders/chat_chunks.py +39 -17
  10. aider/commands.py +79 -15
  11. aider/diffs.py +10 -9
  12. aider/exceptions.py +1 -1
  13. aider/helpers/coroutines.py +8 -0
  14. aider/helpers/requests.py +45 -0
  15. aider/history.py +5 -0
  16. aider/io.py +179 -25
  17. aider/main.py +86 -35
  18. aider/models.py +16 -8
  19. aider/queries/tree-sitter-language-pack/c-tags.scm +3 -0
  20. aider/queries/tree-sitter-language-pack/clojure-tags.scm +5 -0
  21. aider/queries/tree-sitter-language-pack/commonlisp-tags.scm +5 -0
  22. aider/queries/tree-sitter-language-pack/cpp-tags.scm +3 -0
  23. aider/queries/tree-sitter-language-pack/csharp-tags.scm +6 -0
  24. aider/queries/tree-sitter-language-pack/dart-tags.scm +5 -0
  25. aider/queries/tree-sitter-language-pack/elixir-tags.scm +5 -0
  26. aider/queries/tree-sitter-language-pack/elm-tags.scm +3 -0
  27. aider/queries/tree-sitter-language-pack/go-tags.scm +7 -0
  28. aider/queries/tree-sitter-language-pack/java-tags.scm +6 -0
  29. aider/queries/tree-sitter-language-pack/javascript-tags.scm +8 -0
  30. aider/queries/tree-sitter-language-pack/lua-tags.scm +5 -0
  31. aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +3 -0
  32. aider/queries/tree-sitter-language-pack/python-tags.scm +10 -0
  33. aider/queries/tree-sitter-language-pack/r-tags.scm +6 -0
  34. aider/queries/tree-sitter-language-pack/ruby-tags.scm +5 -0
  35. aider/queries/tree-sitter-language-pack/rust-tags.scm +3 -0
  36. aider/queries/tree-sitter-language-pack/solidity-tags.scm +1 -1
  37. aider/queries/tree-sitter-language-pack/swift-tags.scm +4 -1
  38. aider/queries/tree-sitter-languages/c-tags.scm +3 -0
  39. aider/queries/tree-sitter-languages/c_sharp-tags.scm +6 -0
  40. aider/queries/tree-sitter-languages/cpp-tags.scm +3 -0
  41. aider/queries/tree-sitter-languages/dart-tags.scm +2 -1
  42. aider/queries/tree-sitter-languages/elixir-tags.scm +5 -0
  43. aider/queries/tree-sitter-languages/elm-tags.scm +3 -0
  44. aider/queries/tree-sitter-languages/fortran-tags.scm +3 -0
  45. aider/queries/tree-sitter-languages/go-tags.scm +6 -0
  46. aider/queries/tree-sitter-languages/haskell-tags.scm +2 -0
  47. aider/queries/tree-sitter-languages/java-tags.scm +6 -0
  48. aider/queries/tree-sitter-languages/javascript-tags.scm +8 -0
  49. aider/queries/tree-sitter-languages/julia-tags.scm +2 -2
  50. aider/queries/tree-sitter-languages/kotlin-tags.scm +3 -0
  51. aider/queries/tree-sitter-languages/ocaml_interface-tags.scm +6 -0
  52. aider/queries/tree-sitter-languages/php-tags.scm +6 -0
  53. aider/queries/tree-sitter-languages/python-tags.scm +10 -0
  54. aider/queries/tree-sitter-languages/ruby-tags.scm +5 -0
  55. aider/queries/tree-sitter-languages/rust-tags.scm +3 -0
  56. aider/queries/tree-sitter-languages/scala-tags.scm +2 -3
  57. aider/queries/tree-sitter-languages/typescript-tags.scm +3 -0
  58. aider/queries/tree-sitter-languages/zig-tags.scm +20 -3
  59. aider/repomap.py +71 -11
  60. aider/resources/model-metadata.json +27335 -635
  61. aider/resources/model-settings.yml +190 -0
  62. aider/scrape.py +2 -0
  63. aider/tools/__init__.py +2 -0
  64. aider/tools/command.py +84 -94
  65. aider/tools/command_interactive.py +95 -110
  66. aider/tools/delete_block.py +131 -159
  67. aider/tools/delete_line.py +97 -132
  68. aider/tools/delete_lines.py +120 -160
  69. aider/tools/extract_lines.py +288 -312
  70. aider/tools/finished.py +30 -43
  71. aider/tools/git_branch.py +107 -109
  72. aider/tools/git_diff.py +44 -56
  73. aider/tools/git_log.py +39 -53
  74. aider/tools/git_remote.py +37 -51
  75. aider/tools/git_show.py +33 -47
  76. aider/tools/git_status.py +30 -44
  77. aider/tools/grep.py +214 -242
  78. aider/tools/indent_lines.py +175 -201
  79. aider/tools/insert_block.py +220 -253
  80. aider/tools/list_changes.py +65 -80
  81. aider/tools/ls.py +64 -80
  82. aider/tools/make_editable.py +57 -73
  83. aider/tools/make_readonly.py +50 -66
  84. aider/tools/remove.py +64 -80
  85. aider/tools/replace_all.py +96 -109
  86. aider/tools/replace_line.py +118 -156
  87. aider/tools/replace_lines.py +160 -197
  88. aider/tools/replace_text.py +159 -160
  89. aider/tools/show_numbered_context.py +115 -141
  90. aider/tools/thinking.py +52 -0
  91. aider/tools/undo_change.py +78 -91
  92. aider/tools/update_todo_list.py +130 -138
  93. aider/tools/utils/base_tool.py +64 -0
  94. aider/tools/utils/output.py +118 -0
  95. aider/tools/view.py +38 -54
  96. aider/tools/view_files_matching.py +131 -134
  97. aider/tools/view_files_with_symbol.py +108 -120
  98. aider/urls.py +1 -1
  99. aider/versioncheck.py +4 -3
  100. aider/website/docs/config/adv-model-settings.md +237 -0
  101. aider/website/docs/config/agent-mode.md +36 -3
  102. aider/website/docs/config/model-aliases.md +2 -1
  103. aider/website/docs/faq.md +6 -11
  104. aider/website/docs/languages.md +2 -2
  105. aider/website/docs/more/infinite-output.md +27 -0
  106. {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/METADATA +112 -70
  107. {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/RECORD +112 -107
  108. aider_ce-0.88.38.dist-info/entry_points.txt +6 -0
  109. aider_ce-0.88.20.dist-info/entry_points.txt +0 -2
  110. /aider/tools/{tool_utils.py → utils/helpers.py} +0 -0
  111. {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/WHEEL +0 -0
  112. {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/licenses/LICENSE.txt +0 -0
  113. {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/top_level.txt +0 -0
@@ -133,7 +133,7 @@ cog.out(get_supported_languages_md())
133
133
  | gstlaunch | .launch | | ✓ |
134
134
  | hack | .hack | | ✓ |
135
135
  | hare | .ha | | ✓ |
136
- | haskell | .hs | | ✓ |
136
+ | haskell | .hs || ✓ |
137
137
  | haxe | .hx | | ✓ |
138
138
  | hcl | .hcl | ✓ | ✓ |
139
139
  | hcl | .tf | ✓ | ✓ |
@@ -257,7 +257,7 @@ cog.out(get_supported_languages_md())
257
257
  | xml | .xml | | ✓ |
258
258
  | xml | .xsl | | ✓ |
259
259
  | yuck | .yuck | | ✓ |
260
- | zig | .zig | | ✓ |
260
+ | zig | .zig || ✓ |
261
261
 
262
262
  <!--[[[end]]]-->
263
263
 
@@ -57,13 +57,20 @@ cog.out(model_list)
57
57
  ]]]-->
58
58
  - anthropic.claude-3-5-haiku-20241022-v1:0
59
59
  - anthropic.claude-3-5-sonnet-20241022-v2:0
60
+ - anthropic.claude-3-7-sonnet-20240620-v1:0
60
61
  - anthropic.claude-3-7-sonnet-20250219-v1:0
62
+ - anthropic.claude-haiku-4-5-20251001-v1:0
63
+ - anthropic.claude-haiku-4-5@20251001
61
64
  - anthropic.claude-opus-4-1-20250805-v1:0
62
65
  - anthropic.claude-opus-4-20250514-v1:0
63
66
  - anthropic.claude-sonnet-4-20250514-v1:0
64
67
  - apac.anthropic.claude-3-5-sonnet-20241022-v2:0
68
+ - apac.anthropic.claude-haiku-4-5-20251001-v1:0
65
69
  - apac.anthropic.claude-sonnet-4-20250514-v1:0
70
+ - au.anthropic.claude-haiku-4-5-20251001-v1:0
71
+ - au.anthropic.claude-sonnet-4-5-20250929-v1:0
66
72
  - azure_ai/mistral-medium-2505
73
+ - bedrock/us-gov-west-1/anthropic.claude-3-7-sonnet-20250219-v1:0
67
74
  - bedrock/us.anthropic.claude-3-5-haiku-20241022-v1:0
68
75
  - claude-3-5-haiku-20241022
69
76
  - claude-3-5-haiku-latest
@@ -77,10 +84,14 @@ cog.out(model_list)
77
84
  - claude-3-opus-latest
78
85
  - claude-4-opus-20250514
79
86
  - claude-4-sonnet-20250514
87
+ - claude-haiku-4-5
88
+ - claude-haiku-4-5-20251001
80
89
  - claude-opus-4-1
81
90
  - claude-opus-4-1-20250805
82
91
  - claude-opus-4-20250514
83
92
  - claude-sonnet-4-20250514
93
+ - claude-sonnet-4-5
94
+ - claude-sonnet-4-5-20250929
84
95
  - codestral/codestral-2405
85
96
  - codestral/codestral-latest
86
97
  - databricks/databricks-claude-3-7-sonnet
@@ -92,9 +103,16 @@ cog.out(model_list)
92
103
  - eu.anthropic.claude-3-5-haiku-20241022-v1:0
93
104
  - eu.anthropic.claude-3-5-sonnet-20241022-v2:0
94
105
  - eu.anthropic.claude-3-7-sonnet-20250219-v1:0
106
+ - eu.anthropic.claude-haiku-4-5-20251001-v1:0
95
107
  - eu.anthropic.claude-opus-4-1-20250805-v1:0
96
108
  - eu.anthropic.claude-opus-4-20250514-v1:0
97
109
  - eu.anthropic.claude-sonnet-4-20250514-v1:0
110
+ - eu.anthropic.claude-sonnet-4-5-20250929-v1:0
111
+ - global.anthropic.claude-haiku-4-5-20251001-v1:0
112
+ - global.anthropic.claude-sonnet-4-20250514-v1:0
113
+ - global.anthropic.claude-sonnet-4-5-20250929-v1:0
114
+ - jp.anthropic.claude-haiku-4-5-20251001-v1:0
115
+ - jp.anthropic.claude-sonnet-4-5-20250929-v1:0
98
116
  - mistral/codestral-2405
99
117
  - mistral/codestral-latest
100
118
  - mistral/codestral-mamba-latest
@@ -102,6 +120,7 @@ cog.out(model_list)
102
120
  - mistral/devstral-small-2505
103
121
  - mistral/devstral-small-2507
104
122
  - mistral/magistral-medium-2506
123
+ - mistral/magistral-medium-2509
105
124
  - mistral/magistral-medium-latest
106
125
  - mistral/magistral-small-2506
107
126
  - mistral/magistral-small-latest
@@ -127,18 +146,23 @@ cog.out(model_list)
127
146
  - mistral/pixtral-large-latest
128
147
  - openrouter/anthropic/claude-3.5-sonnet
129
148
  - openrouter/anthropic/claude-3.7-sonnet
149
+ - openrouter/anthropic/claude-haiku-4.5
130
150
  - openrouter/anthropic/claude-opus-4
131
151
  - openrouter/anthropic/claude-opus-4.1
132
152
  - openrouter/anthropic/claude-sonnet-4
153
+ - openrouter/anthropic/claude-sonnet-4.5
133
154
  - openrouter/deepseek/deepseek-chat-v3.1
134
155
  - openrouter/deepseek/deepseek-r1
135
156
  - openrouter/deepseek/deepseek-r1-0528
157
+ - openrouter/deepseek/deepseek-v3.2-exp
136
158
  - us.anthropic.claude-3-5-haiku-20241022-v1:0
137
159
  - us.anthropic.claude-3-5-sonnet-20241022-v2:0
138
160
  - us.anthropic.claude-3-7-sonnet-20250219-v1:0
161
+ - us.anthropic.claude-haiku-4-5-20251001-v1:0
139
162
  - us.anthropic.claude-opus-4-1-20250805-v1:0
140
163
  - us.anthropic.claude-opus-4-20250514-v1:0
141
164
  - us.anthropic.claude-sonnet-4-20250514-v1:0
165
+ - us.anthropic.claude-sonnet-4-5-20250929-v1:0
142
166
  - vertex_ai/claude-3-5-haiku
143
167
  - vertex_ai/claude-3-5-haiku@20241022
144
168
  - vertex_ai/claude-3-5-sonnet
@@ -152,11 +176,14 @@ cog.out(model_list)
152
176
  - vertex_ai/claude-3-opus@20240229
153
177
  - vertex_ai/claude-3-sonnet
154
178
  - vertex_ai/claude-3-sonnet@20240229
179
+ - vertex_ai/claude-haiku-4-5@20251001
155
180
  - vertex_ai/claude-opus-4
156
181
  - vertex_ai/claude-opus-4-1
157
182
  - vertex_ai/claude-opus-4-1@20250805
158
183
  - vertex_ai/claude-opus-4@20250514
159
184
  - vertex_ai/claude-sonnet-4
185
+ - vertex_ai/claude-sonnet-4-5
186
+ - vertex_ai/claude-sonnet-4-5@20250929
160
187
  - vertex_ai/claude-sonnet-4@20250514
161
188
  - vertex_ai/deepseek-ai/deepseek-r1-0528-maas
162
189
  - vertex_ai/deepseek-ai/deepseek-v3.1-maas
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aider-ce
3
- Version: 0.88.20
3
+ Version: 0.88.38
4
4
  Summary: Aider is AI pair programming in your terminal
5
5
  Project-URL: Homepage, https://github.com/dwash96/aider-ce
6
6
  Classifier: Development Status :: 4 - Beta
@@ -79,6 +79,85 @@ Provides-Extra: playwright
79
79
  Requires-Dist: playwright; extra == "playwright"
80
80
  Dynamic: license-file
81
81
 
82
+ ## Documentation and Other Notes
83
+ * [Agent Mode](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/agent-mode.md)
84
+ * [MCP Configuration](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/mcp.md)
85
+ * [Session Management](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/sessions.md)
86
+ * [Aider Original Documentation (still mostly applies)](https://aider.chat/)
87
+ * [Changelog](https://github.com/dwash96/aider-ce/blob/main/CHANGELOG.md)
88
+ * [Discord Community](https://discord.gg/McwdCRuqkJ)
89
+
90
+ ## Installation Instructions
91
+ This project can be installed using several methods:
92
+
93
+ ### Package Installation
94
+ ```bash
95
+ pip install aider-ce
96
+ ```
97
+
98
+ or
99
+
100
+ ```bash
101
+ uv pip install aider-ce
102
+ ```
103
+
104
+ The package exports an `aider-ce` command that accepts all of Aider's configuration options
105
+
106
+ ### Tool Installation
107
+ ```bash
108
+ uv tool install --python python3.12 aider-ce
109
+ ```
110
+
111
+ Use the tool installation so aider doesn't interfere with your development environment
112
+
113
+ ## Configuration
114
+
115
+ The documentation above contains the full set of allowed configuration options
116
+ but I highly recommend using an `.aider.conf.yml` file. A good place to get started is:
117
+
118
+ ```yaml
119
+ model: <model of your choice>
120
+ agent: true
121
+ analytics: false
122
+ auto-commits: true
123
+ auto-save: true
124
+ auto-load: false
125
+ cache-prompts: true
126
+ check-update: true
127
+ debug: false
128
+ enable-context-compaction: true
129
+ env-file: .aider.env
130
+ multiline: true
131
+ preserve-todo-list: true
132
+ show-model-warnings: true
133
+ watch-files: false
134
+ agent-config: |
135
+ {
136
+ "large_file_token_threshold": 12500,
137
+ "skip_cli_confirmations": false
138
+ }
139
+ mcp-servers: |
140
+ {
141
+ "mcpServers":
142
+ {
143
+ "context7":{
144
+ "transport":"http",
145
+ "url":"https://mcp.context7.com/mcp"
146
+ }
147
+ }
148
+ }
149
+ ```
150
+
151
+ Use the adjacent .aider.env file to store model api keys as environment variables, e.g:
152
+
153
+ ```
154
+ ANTHROPIC_API_KEY="..."
155
+ GEMINI_API_KEY="..."
156
+ OPENAI_API_KEY="..."
157
+ OPENROUTER_API_KEY="..."
158
+ DEEPSEEK_API_KEY="..."
159
+ ```
160
+
82
161
  ## Project Roadmap/Goals
83
162
 
84
163
  The current priorities are to improve core capabilities and user experience of the Aider project
@@ -89,8 +168,8 @@ The current priorities are to improve core capabilities and user experience of t
89
168
 
90
169
  2. **Repo Map Accuracy** - [Discussion](https://github.com/dwash96/aider-ce/issues/45)
91
170
  * [x] [Bias page ranking toward active/editable files in repo map parsing](https://github.com/Aider-AI/aider/issues/2405)
92
- * [ ] [Include import information in repo map for richer context](https://github.com/Aider-AI/aider/issues/2688)
93
- * [ ] [Handle non-unique symbols that break down in large codebases](https://github.com/Aider-AI/aider/issues/2341)
171
+ * [x] [Include import information in repo map for richer context](https://github.com/Aider-AI/aider/issues/2688)
172
+ * [x] [Handle non-unique symbols that break down in large codebases](https://github.com/Aider-AI/aider/issues/2341)
94
173
 
95
174
  3. **Context Discovery** - [Discussion](https://github.com/dwash96/aider-ce/issues/46)
96
175
  * [ ] Develop AST-based search capabilities
@@ -116,72 +195,35 @@ The current priorities are to improve core capabilities and user experience of t
116
195
  * [ ] Add a plugin-like system for allowing agent mode to use user-defined tools in simple python files
117
196
  * [ ] Add a dynamic tool discovery tool to allow the system to have only the tools it needs in context
118
197
 
119
- ### Documentation and Other Notes
120
- * [Agent Mode](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/agent-mode.md)
121
- * [MCP Configuration](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/mcp.md)
122
- * [Session Management](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/sessions.md)
123
- * [Aider Original Documentation (still mostly applies)](https://aider.chat/)
124
- * [Discord Community](https://discord.gg/McwdCRuqkJ)
125
-
126
- ### Installation Instructions
127
- This project can be installed using several methods:
128
-
129
- ### Package Installation
130
- ```bash
131
- pip install aider-ce
132
- ```
133
-
134
- or
135
-
136
- ```bash
137
- uv pip install aider-ce
138
- ```
139
-
140
- The package exports an `aider-ce` command that accepts all of Aider's configuration options
141
-
142
- ### Tool Installation
143
- ```bash
144
- uv tool install --python python3.12 aider-ce
145
- ```
146
-
147
- Use the tool installation so aider doesn't interfere with your development environment
148
-
149
- ### Merged PRs
150
-
151
- * [MCP: #3937](https://github.com/Aider-AI/aider/pull/3937)
152
- * [MCP Multi Tool Response](https://github.com/quinlanjager/aider/pull/1)
153
- * [Navigator Mode: #3781](https://github.com/Aider-AI/aider/pull/3781)
154
- * [Navigator Mode Large File Count](https://github.com/Aider-AI/aider/commit/b88a7bda649931798209945d9687718316c7427f)
155
- * [Fix navigator mode auto commit](https://github.com/dwash96/aider-ce/issues/38)
156
- * [Qwen 3: #4383](https://github.com/Aider-AI/aider/pull/4383)
157
- * [Fuzzy Search: #4366](https://github.com/Aider-AI/aider/pull/4366)
158
- * [Map Cache Location Config: #2911](https://github.com/Aider-AI/aider/pull/2911)
159
- * [Enhanced System Prompts: #3804](https://github.com/Aider-AI/aider/pull/3804)
160
- * [Repo Map File Name Truncation Fix: #4320](https://github.com/Aider-AI/aider/pull/4320)
161
- * [Read Only Stub Files For Context Window Management : #3056](https://github.com/Aider-AI/aider/pull/3056)
162
-
163
- ### Other Updates
164
-
165
- * [Added Remote MCP Tool Calls With HTTP Streaming](https://github.com/Aider-AI/aider/commit/a86039f73579df7c32fee910967827c9fccdec0d)
166
- * [Enforce single tool call at a time](https://github.com/Aider-AI/aider/commit/3346c3e6194096cef64b1899b017bde36a65f794)
167
- * [Upgraded MCP dep to 1.12.3 for Remote MCP Tool Calls](https://github.com/dwash96/aider-ce/commit/a91ee1c03627a31093364fd2a09e654781b1b879)
168
- * [Updated base Python version to 3.12 to better support navigator mode (might consider undoing this, if dependency list supports it)](https://github.com/dwash96/aider-ce/commit/9ed416d523c11362a3ba9fc4c02134e0e79d41fc)
169
- * [Suppress LiteLLM asyncio errors that clutter output](https://github.com/Aider-AI/aider/issues/6)
170
- * [Updated Docker File Build Process](https://github.com/Aider-AI/aider/commit/cbab01458d0a35c03b30ac2f6347a74fc2b9f662)
171
- * [Manually install necessary ubuntu dependencies](https://github.com/dwash96/aider-ce/issues/14)
172
- * [.gitignore updates](https://github.com/dwash96/aider-ce/commit/7c7e803fa63d1acd860eef1423e5a03220df6017)
173
- * [Experimental Context Compaction For Longer Running Generation Tasks](https://github.com/Aider-AI/aider/issues/6)
174
- * [Edit Before Adding Files and Reflecting](https://github.com/dwash96/aider-ce/pull/22)
175
- * [Fix Deepseek model configurations](https://github.com/Aider-AI/aider/commit/c839a6dd8964d702172cae007375e299732d3823)
176
- * [Relax Version Pinning For Easier Distribution](https://github.com/dwash96/aider-ce/issues/18)
177
- * [Remove Confirm Responses from History](https://github.com/Aider-AI/aider/pull/3958)
178
- * [Benchmark Results By Language](https://github.com/dwash96/aider-ce/pull/27)
179
- * [Allow Benchmarks to Use Repo Map For Better Accuracy](https://github.com/dwash96/aider-ce/pull/25)
180
- * [Read File Globbing](https://github.com/Aider-AI/aider/pull/3395)
181
-
182
198
  ### All Contributors (Both Aider Main and Aider-CE)
183
199
 
184
- <a href="https://github.com/dwash96/aider-ce/graphs/contributors">
185
- <img src="https://contrib.rocks/image?repo=dwash96/aider-ce" />
186
- </a>
187
-
200
+ <a href="https://github.com/paul-gauthier">@paul-gauthier</a>
201
+ <a href="https://github.com/dwash96">@dwash96</a>
202
+ <a href="https://github.com/tekacs">@tekacs</a>
203
+ <a href="https://github.com/ei-grad">@ei-grad</a>
204
+ <a href="https://github.com/joshuavial">@joshuavial</a>
205
+ <a href="https://github.com/chr15m">@chr15m</a>
206
+ <a href="https://github.com/fry69">@fry69</a>
207
+ <a href="https://github.com/quinlanjager">@quinlanjager</a>
208
+ <a href="https://github.com/caseymcc">@caseymcc</a>
209
+ <a href="https://github.com/shladnik">@shladnik</a>
210
+ <a href="https://github.com/itlackey">@itlackey</a>
211
+ <a href="https://github.com/tomjuggler">@tomjuggler</a>
212
+ <a href="https://github.com/vk4s">@vk4s</a>
213
+ <a href="https://github.com/titusz">@titusz</a>
214
+ <a href="https://github.com/daniel-vainsencher">@daniel-vainsencher</a>
215
+ <a href="https://github.com/bphd">@bphd</a>
216
+ <a href="https://github.com/akaihola">@akaihola</a>
217
+ <a href="https://github.com/jalammar">@jalammar</a>
218
+ <a href="https://github.com/schpet">@schpet</a>
219
+ <a href="https://github.com/iamFIREcracker">@iamFIREcracker</a>
220
+ <a href="https://github.com/KennyDizi">@KennyDizi</a>
221
+ <a href="https://github.com/ivanfioravanti">@ivanfioravanti</a>
222
+ <a href="https://github.com/mdeweerd">@mdeweerd</a>
223
+ <a href="https://github.com/fahmad91">@fahmad91</a>
224
+ <a href="https://github.com/itsmeknt">@itsmeknt</a>
225
+ <a href="https://github.com/cheahjs">@cheahjs</a>
226
+ <a href="https://github.com/youknow04">@youknow04</a>
227
+ <a href="https://github.com/pcamp">@pcamp</a>
228
+ <a href="https://github.com/miradnanali">@miradnanali</a>
229
+ <a href="https://github.com/o-nix">@o-nix</a>