-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathskills_loader.py
More file actions
277 lines (231 loc) 路 9.88 KB
/
Copy pathskills_loader.py
File metadata and controls
277 lines (231 loc) 路 9.88 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
"""
Agent skills loader.
Discovers ``SKILL.md`` files from configured filesystem paths, parses their YAML
frontmatter, and formats them as prompt context for review/improve/describe tools.
A skill is a directory containing a ``SKILL.md`` file with the structure:
---
name: terraform-standards
description: Use when reviewing Terraform code...
---
# Terraform Review Guidance
...
Activation is description-based: every discovered skill is included with its
name, description, and body. The model decides which guidance applies based on
the descriptions.
Resources alongside SKILL.md
----------------------------
The agent-skills standard supports bundled files for progressive disclosure:
``references/`` (markdown context loaded on demand), ``scripts/`` (executables
the agent can invoke), and ``assets/`` (templates / images / data). PR-Agent
runs single-shot model calls and has no tool-use loop, so progressive disclosure
is not implementable here. Instead, this loader inlines every text resource
directly into the prompt:
* All ``*.md`` files in the skill directory tree (including ``references/``)
are gathered and appended after the SKILL.md body.
* ``scripts/`` and ``assets/`` subdirectories are skipped: scripts are
executables we cannot safely run from a one-shot prompt, and assets are
typically binary. Skills that depend on script execution will not work.
In short, this implementation supports **text-only** agent skills.
"""
from __future__ import annotations
import os
from dataclasses import dataclass, field
from typing import List, Optional, Tuple
import yaml
from pr_agent.config_loader import get_settings
from pr_agent.log import get_logger
# Approximate characters-per-token used to keep the skills block under budget.
_CHARS_PER_TOKEN = 4
_FRONTMATTER_DELIMITER = "---"
_DEFAULT_MAX_SKILLS_TOKENS = 8000
# Subdirectories whose contents are intentionally excluded from inlining,
# matching the agent-skills standard's executable/binary conventions.
_EXCLUDED_RESOURCE_DIRS = frozenset({"scripts", "assets"})
@dataclass(frozen=True)
class SkillResource:
"""A non-SKILL.md text file bundled with a skill (e.g. references/guide.md)."""
relative_path: str
content: str
@dataclass(frozen=True)
class Skill:
name: str
description: str
body: str
path: str
resources: Tuple[SkillResource, ...] = field(default_factory=tuple)
def _gather_resources(skill_md_path: str) -> Tuple[SkillResource, ...]:
"""Walk the skill's directory tree and collect sibling ``*.md`` files.
SKILL.md itself is excluded. Subdirectories named ``scripts`` or ``assets``
are skipped wholesale. If a nested directory contains its own SKILL.md it
is treated as a separate skill and not descended into.
"""
skill_dir = os.path.dirname(skill_md_path)
resources: List[SkillResource] = []
for root, dirs, files in os.walk(skill_dir):
# Prune executable / binary subtrees per the agent-skills convention.
dirs[:] = [d for d in dirs if d not in _EXCLUDED_RESOURCE_DIRS]
# A nested skill directory is independent; do not absorb its files.
if root != skill_dir and "SKILL.md" in files:
dirs[:] = []
continue
for filename in sorted(files):
if not filename.endswith(".md"):
continue
if root == skill_dir and filename == "SKILL.md":
continue
full = os.path.join(root, filename)
try:
with open(full, "r", encoding="utf-8") as fh:
content = fh.read()
except OSError as e:
get_logger().warning(f"Skill resource unreadable: {full} ({e})")
continue
rel = os.path.relpath(full, skill_dir)
resources.append(SkillResource(relative_path=rel, content=content))
resources.sort(key=lambda r: r.relative_path)
return tuple(resources)
def _parse_skill_file(file_path: str) -> Optional[Skill]:
"""Parse a single SKILL.md file. Returns None and logs a warning on malformed input."""
try:
with open(file_path, "r", encoding="utf-8") as f:
content = f.read()
except OSError as e:
get_logger().warning(f"Skill file unreadable: {file_path} ({e})")
return None
lines = content.splitlines()
if not lines or lines[0].strip() != _FRONTMATTER_DELIMITER:
get_logger().warning(f"Skill file missing opening frontmatter delimiter: {file_path}")
return None
end_idx = None
for i in range(1, len(lines)):
if lines[i].strip() == _FRONTMATTER_DELIMITER:
end_idx = i
break
if end_idx is None:
get_logger().warning(f"Skill file missing closing frontmatter delimiter: {file_path}")
return None
frontmatter_text = "\n".join(lines[1:end_idx])
body = "\n".join(lines[end_idx + 1 :]).strip()
try:
meta = yaml.safe_load(frontmatter_text) or {}
except yaml.YAMLError as e:
get_logger().warning(f"Skill frontmatter is not valid YAML: {file_path} ({e})")
return None
if not isinstance(meta, dict):
get_logger().warning(f"Skill frontmatter must be a mapping: {file_path}")
return None
name = meta.get("name")
description = meta.get("description")
if not isinstance(name, str) or not name.strip():
get_logger().warning(f"Skill missing required 'name' field: {file_path}")
return None
if not isinstance(description, str) or not description.strip():
get_logger().warning(f"Skill missing required 'description' field: {file_path}")
return None
return Skill(
name=name.strip(),
description=description.strip(),
body=body,
path=file_path,
resources=_gather_resources(file_path),
)
def discover_skills(paths: List[str]) -> List[Skill]:
"""Scan the given filesystem paths for ``*/SKILL.md`` files.
Each entry in ``paths`` may be either a directory containing skill
subdirectories (recursive search) or a path to a SKILL.md file directly.
Environment variables and ``~`` are expanded. Missing paths are skipped
with a warning.
"""
skills: List[Skill] = []
seen: set = set()
for raw_path in paths or []:
if not isinstance(raw_path, str) or not raw_path.strip():
continue
expanded = os.path.expanduser(os.path.expandvars(raw_path.strip()))
if not os.path.exists(expanded):
get_logger().warning(f"Skills path does not exist: {expanded}")
continue
if os.path.isfile(expanded):
candidates = [expanded] if os.path.basename(expanded) == "SKILL.md" else []
else:
candidates = []
for root, _dirs, files in os.walk(expanded):
if "SKILL.md" in files:
candidates.append(os.path.join(root, "SKILL.md"))
for candidate in candidates:
real = os.path.realpath(candidate)
if real in seen:
continue
seen.add(real)
skill = _parse_skill_file(candidate)
if skill is not None:
skills.append(skill)
skills.sort(key=lambda s: s.name)
return skills
def _format_skill(skill: Skill) -> str:
"""Render a skill (and its inlined resources) as a prompt-ready string."""
parts = [
f"### Skill: {skill.name}",
f"When to use: {skill.description}",
"",
skill.body.rstrip(),
]
for resource in skill.resources:
parts.append("")
parts.append(f"#### {resource.relative_path}")
parts.append(resource.content.rstrip())
return "\n".join(parts).rstrip()
def format_skills_context(skills: List[Skill], max_tokens: int) -> str:
"""Format skills into a prompt-ready string under a token budget.
Skills are emitted in order; once the running character count would exceed
the budget (estimated as ``max_tokens * 4`` characters), remaining skills
are dropped. If even the first skill exceeds the budget, its formatted text
is truncated and a marker appended. Returns an empty string when nothing fits.
"""
if not skills:
return ""
if max_tokens is None or max_tokens <= 0:
return ""
char_budget = max_tokens * _CHARS_PER_TOKEN
truncate_marker = "\n\n[truncated]"
separator = "\n\n---\n\n"
pieces: List[str] = []
used = 0
for skill in skills:
formatted = _format_skill(skill)
addition_len = (len(separator) if pieces else 0) + len(formatted)
if used + addition_len > char_budget:
if not pieces:
available = max(0, char_budget - len(truncate_marker))
pieces.append(formatted[:available] + truncate_marker)
else:
get_logger().info(
f"Skills context budget reached; dropping {len(skills) - len(pieces)} skill(s)"
)
break
pieces.append(formatted)
used += addition_len
return separator.join(pieces).strip()
def get_skills_context() -> str:
"""Read settings, discover skills, and format them for prompt injection.
Returns ``''`` when skills are disabled, no paths are configured, or no
skills are found. The only swallowed error is a non-numeric override of
``skills.max_skills_tokens``; everything else surfaces normally so genuine
bugs are not masked.
"""
settings = get_settings()
if not settings.skills.enabled:
return ""
paths = list(settings.skills.paths or [])
raw_max = settings.skills.max_skills_tokens
try:
max_tokens = int(raw_max)
except (TypeError, ValueError):
get_logger().warning(
f"Invalid skills.max_skills_tokens={raw_max!r}; falling back to {_DEFAULT_MAX_SKILLS_TOKENS}"
)
max_tokens = _DEFAULT_MAX_SKILLS_TOKENS
skills = discover_skills(paths)
if not skills:
return ""
return format_skills_context(skills, max_tokens)