Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ LLMs are a part of our lives from here on out so join us in learning about and c
* [Agent Mode](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/agent-mode.md)
* [MCP Configuration](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/mcp.md)
* [Session Management](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/sessions.md)
* [Skills](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/skills.md)
* [Aider Original Documentation (still mostly applies)](https://aider.chat/)

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

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

Expand Down
2 changes: 1 addition & 1 deletion aider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from packaging import version

__version__ = "0.88.40.dev"
__version__ = "0.89.0.dev"
safe_version = __version__

try:
Expand Down
258 changes: 0 additions & 258 deletions aider/analytics.py

This file was deleted.

12 changes: 6 additions & 6 deletions aider/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,28 +687,28 @@ def get_parser(default_config_files, git_root):
"--analytics",
action=argparse.BooleanOptionalAction,
default=None,
help="Enable/disable analytics for current session (default: random)",
help=argparse.SUPPRESS,
)
group.add_argument(
"--analytics-log",
metavar="ANALYTICS_LOG_FILE",
help="Specify a file to log analytics events",
help=argparse.SUPPRESS,
).complete = shtab.FILE
group.add_argument(
"--analytics-disable",
action="store_true",
help="Permanently disable analytics",
help=argparse.SUPPRESS,
default=False,
)
group.add_argument(
"--analytics-posthog-host",
metavar="ANALYTICS_POSTHOG_HOST",
help="Send analytics to custom PostHog instance",
help=argparse.SUPPRESS,
)
group.add_argument(
"--analytics-posthog-project-api-key",
metavar="ANALYTICS_POSTHOG_PROJECT_API_KEY",
help="Send analytics to custom PostHog project",
help=argparse.SUPPRESS,
)

#########
Expand Down Expand Up @@ -775,7 +775,7 @@ def get_parser(default_config_files, git_root):
"--gui",
"--browser",
action=argparse.BooleanOptionalAction,
help="Run aider in your browser (default: False)",
help=argparse.SUPPRESS,
default=False,
)
group.add_argument(
Expand Down
Loading
Loading