Skip to content

Commit fe75a26

Browse files
authored
Merge pull request #226 from dwash96/v0.89.0
V0.89.0
2 parents a17c5a3 + 615786b commit fe75a26

25 files changed

Lines changed: 2073 additions & 988 deletions

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ LLMs are a part of our lives from here on out so join us in learning about and c
1919
* [Agent Mode](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/agent-mode.md)
2020
* [MCP Configuration](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/mcp.md)
2121
* [Session Management](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/sessions.md)
22+
* [Skills](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/skills.md)
2223
* [Aider Original Documentation (still mostly applies)](https://aider.chat/)
2324

2425
You can see a selection of the enhancements and updates by comparing the help output:
@@ -134,7 +135,7 @@ The current priorities are to improve core capabilities and user experience of t
134135
* [ ] Add a RAG tool for the model to ask questions about the codebase
135136
* [ ] Make the system prompts more aggressive about removing unneeded files/content from the context
136137
* [ ] Add a plugin-like system for allowing agent mode to use user-defined tools in simple python files
137-
* [ ] Add a dynamic tool discovery tool to allow the system to have only the tools it needs in context
138+
* [x] Add a dynamic tool discovery tool to allow the system to have only the tools it needs in context
138139

139140
### All Contributors (Both Aider Main and Aider-CE)
140141

aider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from packaging import version
22

3-
__version__ = "0.88.40.dev"
3+
__version__ = "0.89.0.dev"
44
safe_version = __version__
55

66
try:

aider/analytics.py

Lines changed: 0 additions & 258 deletions
This file was deleted.

aider/args.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -687,28 +687,28 @@ def get_parser(default_config_files, git_root):
687687
"--analytics",
688688
action=argparse.BooleanOptionalAction,
689689
default=None,
690-
help="Enable/disable analytics for current session (default: random)",
690+
help=argparse.SUPPRESS,
691691
)
692692
group.add_argument(
693693
"--analytics-log",
694694
metavar="ANALYTICS_LOG_FILE",
695-
help="Specify a file to log analytics events",
695+
help=argparse.SUPPRESS,
696696
).complete = shtab.FILE
697697
group.add_argument(
698698
"--analytics-disable",
699699
action="store_true",
700-
help="Permanently disable analytics",
700+
help=argparse.SUPPRESS,
701701
default=False,
702702
)
703703
group.add_argument(
704704
"--analytics-posthog-host",
705705
metavar="ANALYTICS_POSTHOG_HOST",
706-
help="Send analytics to custom PostHog instance",
706+
help=argparse.SUPPRESS,
707707
)
708708
group.add_argument(
709709
"--analytics-posthog-project-api-key",
710710
metavar="ANALYTICS_POSTHOG_PROJECT_API_KEY",
711-
help="Send analytics to custom PostHog project",
711+
help=argparse.SUPPRESS,
712712
)
713713

714714
#########
@@ -775,7 +775,7 @@ def get_parser(default_config_files, git_root):
775775
"--gui",
776776
"--browser",
777777
action=argparse.BooleanOptionalAction,
778-
help="Run aider in your browser (default: False)",
778+
help=argparse.SUPPRESS,
779779
default=False,
780780
)
781781
group.add_argument(

0 commit comments

Comments
 (0)