-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdefaults.py
More file actions
32 lines (29 loc) · 748 Bytes
/
Copy pathdefaults.py
File metadata and controls
32 lines (29 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""Compatibility exports for Moonshine constants."""
from moonshine.moonshine_constants import (
BUILTIN_SKILLS,
DEFAULT_AGENT_RULES_MD,
DEFAULT_CONFIG,
DEFAULT_PROJECT_RULES_TEMPLATE,
GENERAL_MEMORY_SPECS,
PROJECT_MEMORY_SPECS,
alias_from_relative_path,
default_config,
general_specs,
project_specs,
resolve_memory_spec,
)
DEFAULT_CLAUDE_MD = DEFAULT_AGENT_RULES_MD
__all__ = [
"BUILTIN_SKILLS",
"DEFAULT_AGENT_RULES_MD",
"DEFAULT_CLAUDE_MD",
"DEFAULT_CONFIG",
"DEFAULT_PROJECT_RULES_TEMPLATE",
"GENERAL_MEMORY_SPECS",
"PROJECT_MEMORY_SPECS",
"alias_from_relative_path",
"default_config",
"general_specs",
"project_specs",
"resolve_memory_spec",
]