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
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.89.1.dev"
__version__ = "0.89.2.dev"
safe_version = __version__

try:
Expand Down
2 changes: 1 addition & 1 deletion aider/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ def get_parser(default_config_files, git_root):
"--check-update",
action=argparse.BooleanOptionalAction,
help="Check for new aider versions on launch",
default=True,
default=False,
)
group.add_argument(
"--show-release-notes",
Expand Down
4 changes: 1 addition & 3 deletions aider/coders/agent_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,16 +324,14 @@ def _get_agent_config(self):
if "skills_excludelist" not in config:
config["skills_excludelist"] = []

self._initialize_skills_manager(config)
self._initialize_skills_manager(config)

return config

def _initialize_skills_manager(self, config):
"""
Initialize the skills manager with the configured directory paths and filters.
"""
if not config.get("skills_paths", []):
return

try:
git_root = str(self.repo.root) if self.repo else None
Expand Down
Loading