@cursor/july 0.1.78 → 0.1.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/404.html +1 -1
- package/dist/docs/ab.html +2 -2
- package/dist/docs/assets/{app.BsA7t7rS.js → app.BEHVaPKt.js} +1 -1
- package/dist/docs/assets/chunks/@localSearchIndexroot.Vvio4stV.js +1 -0
- package/dist/docs/assets/chunks/{VPLocalSearchBox.B1hHhktM.js → VPLocalSearchBox.D2-5PKih.js} +1 -1
- package/dist/docs/assets/chunks/{theme.DLpLSsQh.js → theme.uNqJ4MUO.js} +2 -2
- package/dist/docs/building-with-agents.html +2 -2
- package/dist/docs/concepts.html +2 -2
- package/dist/docs/deployment.html +2 -2
- package/dist/docs/evals.html +2 -2
- package/dist/docs/example-agents/approval-buddy.html +2 -2
- package/dist/docs/example-agents/benny.html +2 -2
- package/dist/docs/example-agents/bugbot.html +2 -2
- package/dist/docs/example-agents/codebase-wiki.html +2 -2
- package/dist/docs/example-agents/codeowners-review.html +2 -2
- package/dist/docs/example-agents/concierge.html +2 -2
- package/dist/docs/example-agents/fsd.html +2 -2
- package/dist/docs/example-agents/index.html +2 -2
- package/dist/docs/example-agents/knowledge-base.html +2 -2
- package/dist/docs/example-agents/oncall.html +2 -2
- package/dist/docs/example-agents/security-reviewer.html +2 -2
- package/dist/docs/example-agents/slack-agent.html +2 -2
- package/dist/docs/example-agents/weather-agent.html +2 -2
- package/dist/docs/guides/agent-to-agent.html +2 -2
- package/dist/docs/guides/cloud-runtime.html +2 -2
- package/dist/docs/guides/convert-automation.html +2 -2
- package/dist/docs/guides/github.html +2 -2
- package/dist/docs/guides/human-in-the-loop.html +2 -2
- package/dist/docs/guides/mcp-oauth.html +2 -2
- package/dist/docs/guides/opentelemetry.html +2 -2
- package/dist/docs/guides/slack.html +2 -2
- package/dist/docs/guides/webhooks.html +2 -2
- package/dist/docs/hillclimbing.html +2 -2
- package/dist/docs/index.html +2 -2
- package/dist/docs/quickstart.html +2 -2
- package/dist/docs/reference/agent-config.html +2 -2
- package/dist/docs/reference/artifacts.html +2 -2
- package/dist/docs/reference/channels.html +2 -2
- package/dist/docs/reference/cli.html +2 -2
- package/dist/docs/reference/connections.html +2 -2
- package/dist/docs/reference/hooks.html +2 -2
- package/dist/docs/reference/http-api.html +2 -2
- package/dist/docs/reference/instructions.html +2 -2
- package/dist/docs/reference/playground.html +2 -2
- package/dist/docs/reference/project-layout.html +2 -2
- package/dist/docs/reference/prompt.html +2 -2
- package/dist/docs/reference/schedules.html +2 -2
- package/dist/docs/reference/sessions.html +2 -2
- package/dist/docs/reference/skills.html +2 -2
- package/dist/docs/reference/subagents.html +2 -2
- package/dist/docs/reference/tools.html +2 -2
- package/dist/docs/scaffolding-agents.html +2 -2
- package/dist/docs/storage.html +2 -2
- package/dist/docs/templates/agentic-owners.html +2 -2
- package/dist/docs/templates/demo.html +2 -2
- package/dist/docs/templates/pr-autofixer.html +2 -2
- package/dist/docs/templates/security-reviewer.html +2 -2
- package/dist/docs/templates/triage.html +2 -2
- package/dist/docs/troubleshooting.html +2 -2
- package/package.json +1 -1
- package/templates/agentic-owners/agent/lib/owners/match.ts +64 -3
- package/templates/agentic-owners/agent/lib/owners/parse.ts +55 -1
- package/templates/agentic-owners/agent/lib/owners/types.ts +5 -0
- package/dist/docs/assets/chunks/@localSearchIndexroot.Dcs6boxD.js +0 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
// Vendored from the Agentic Owners policy core; see README.md in this
|
|
2
2
|
// directory. Precedence must stay identical to the source's.
|
|
3
3
|
|
|
4
|
+
import { posix } from "node:path";
|
|
5
|
+
import { AGENTIC_OWNERS_DIR } from "./constants.js";
|
|
4
6
|
import { patternMatchesFile, patternSpecificity } from "./matching.js";
|
|
5
7
|
import type {
|
|
6
8
|
AgenticOwnersMatchedConfig,
|
|
@@ -12,10 +14,63 @@ type PathScopedRule = {
|
|
|
12
14
|
readonly scopeDepth: number;
|
|
13
15
|
readonly sourcePath: string;
|
|
14
16
|
readonly paths: readonly string[];
|
|
15
|
-
/** Root-only
|
|
17
|
+
/** Root-only repository-wide exemption, produced from `global_exclusions`. */
|
|
16
18
|
readonly globalExclusion?: boolean;
|
|
17
19
|
};
|
|
18
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Convert a repository-relative changed path to the path seen by a policy.
|
|
23
|
+
*
|
|
24
|
+
* `foo/.agentic-owners/policy.yml` owns the `foo/` scope, so its `paths`
|
|
25
|
+
* entries match against filenames relative to `foo/`. Root policies continue
|
|
26
|
+
* to see repository-relative paths. Explicit leading `../` segments can
|
|
27
|
+
* address a sibling tree.
|
|
28
|
+
*/
|
|
29
|
+
function filepathRelativeToPolicyScope({
|
|
30
|
+
sourcePath,
|
|
31
|
+
filepath,
|
|
32
|
+
}: {
|
|
33
|
+
sourcePath: string;
|
|
34
|
+
filepath: string;
|
|
35
|
+
}): string {
|
|
36
|
+
const normalizedSourcePath = sourcePath.replace(/^\/+/, "");
|
|
37
|
+
const normalizedFilepath = filepath.replace(/^\/+/, "");
|
|
38
|
+
const marker = `/${AGENTIC_OWNERS_DIR}/`;
|
|
39
|
+
const markerIndex = normalizedSourcePath.lastIndexOf(marker);
|
|
40
|
+
if (markerIndex < 0) {
|
|
41
|
+
return normalizedFilepath;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const scope = normalizedSourcePath.slice(0, markerIndex);
|
|
45
|
+
return posix.relative(scope, normalizedFilepath);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function patternMatchesFileFromPolicy({
|
|
49
|
+
rule,
|
|
50
|
+
pattern,
|
|
51
|
+
filepath,
|
|
52
|
+
}: {
|
|
53
|
+
rule: PathScopedRule;
|
|
54
|
+
pattern: string;
|
|
55
|
+
filepath: string;
|
|
56
|
+
}): boolean {
|
|
57
|
+
const relativeFilepath = filepathRelativeToPolicyScope({
|
|
58
|
+
sourcePath: rule.sourcePath,
|
|
59
|
+
filepath,
|
|
60
|
+
});
|
|
61
|
+
const filepathIsOutsideScope =
|
|
62
|
+
relativeFilepath === ".." || relativeFilepath.startsWith("../");
|
|
63
|
+
if (filepathIsOutsideScope && !pattern.startsWith("../")) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
const slashlessPatternMatchesOnlyPolicyRoot =
|
|
67
|
+
pattern !== "**" && !pattern.includes("/");
|
|
68
|
+
if (slashlessPatternMatchesOnlyPolicyRoot && relativeFilepath.includes("/")) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
return patternMatchesFile(pattern, relativeFilepath);
|
|
72
|
+
}
|
|
73
|
+
|
|
19
74
|
function ruleMatchesFile({
|
|
20
75
|
rule,
|
|
21
76
|
filepath,
|
|
@@ -23,7 +78,13 @@ function ruleMatchesFile({
|
|
|
23
78
|
rule: PathScopedRule;
|
|
24
79
|
filepath: string;
|
|
25
80
|
}): boolean {
|
|
26
|
-
return rule.paths.some((pattern) =>
|
|
81
|
+
return rule.paths.some((pattern) =>
|
|
82
|
+
patternMatchesFileFromPolicy({
|
|
83
|
+
rule,
|
|
84
|
+
pattern,
|
|
85
|
+
filepath,
|
|
86
|
+
})
|
|
87
|
+
);
|
|
27
88
|
}
|
|
28
89
|
|
|
29
90
|
function bestMatchingPatternSpecificity(
|
|
@@ -32,7 +93,7 @@ function bestMatchingPatternSpecificity(
|
|
|
32
93
|
): number {
|
|
33
94
|
let best = 0;
|
|
34
95
|
for (const pattern of rule.paths) {
|
|
35
|
-
if (
|
|
96
|
+
if (patternMatchesFileFromPolicy({ rule, pattern, filepath })) {
|
|
36
97
|
best = Math.max(best, patternSpecificity(pattern));
|
|
37
98
|
}
|
|
38
99
|
}
|
|
@@ -120,6 +120,18 @@ function parsePaths(
|
|
|
120
120
|
issues.push(`${label}: paths must not be empty`);
|
|
121
121
|
return undefined;
|
|
122
122
|
}
|
|
123
|
+
let hasInvalidPath = false;
|
|
124
|
+
for (const [index, path] of paths.entries()) {
|
|
125
|
+
if (path.startsWith("/")) {
|
|
126
|
+
issues.push(
|
|
127
|
+
`${label}[${index}]: path must be relative to the policy directory (no leading /)`
|
|
128
|
+
);
|
|
129
|
+
hasInvalidPath = true;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
if (hasInvalidPath) {
|
|
133
|
+
return undefined;
|
|
134
|
+
}
|
|
123
135
|
return paths;
|
|
124
136
|
}
|
|
125
137
|
|
|
@@ -141,7 +153,15 @@ function parseGlobalExclusions({
|
|
|
141
153
|
);
|
|
142
154
|
return [];
|
|
143
155
|
}
|
|
144
|
-
|
|
156
|
+
const label = `${sourcePath}: global_exclusions`;
|
|
157
|
+
const paths = parsePaths(value, label, issues) ?? [];
|
|
158
|
+
validatePathsStayWithinRepository({
|
|
159
|
+
paths,
|
|
160
|
+
sourcePath,
|
|
161
|
+
label,
|
|
162
|
+
issues,
|
|
163
|
+
});
|
|
164
|
+
return paths;
|
|
145
165
|
}
|
|
146
166
|
|
|
147
167
|
function parsePromptPath(
|
|
@@ -335,6 +355,34 @@ function scopeDepthForConfigPath(configPath: string): number {
|
|
|
335
355
|
return prefix.split("/").filter((segment) => segment !== "").length;
|
|
336
356
|
}
|
|
337
357
|
|
|
358
|
+
function validatePathsStayWithinRepository({
|
|
359
|
+
paths,
|
|
360
|
+
sourcePath,
|
|
361
|
+
label,
|
|
362
|
+
issues,
|
|
363
|
+
}: {
|
|
364
|
+
paths: readonly string[];
|
|
365
|
+
sourcePath: string;
|
|
366
|
+
label: string;
|
|
367
|
+
issues: string[];
|
|
368
|
+
}): void {
|
|
369
|
+
const scopeDepth = scopeDepthForConfigPath(sourcePath);
|
|
370
|
+
for (const [index, path] of paths.entries()) {
|
|
371
|
+
const segments = path.split("/");
|
|
372
|
+
let parentSegments = 0;
|
|
373
|
+
while (segments[parentSegments] === "..") {
|
|
374
|
+
parentSegments += 1;
|
|
375
|
+
}
|
|
376
|
+
if (segments.slice(parentSegments).includes("..")) {
|
|
377
|
+
issues.push(
|
|
378
|
+
`${label}[${index}]: .. segments must precede the path pattern`
|
|
379
|
+
);
|
|
380
|
+
} else if (parentSegments > scopeDepth) {
|
|
381
|
+
issues.push(`${label}[${index}]: path escapes the repository root`);
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
338
386
|
function parsePolicyRecord({
|
|
339
387
|
record,
|
|
340
388
|
sourcePath,
|
|
@@ -417,6 +465,12 @@ function parsePolicyRecord({
|
|
|
417
465
|
}
|
|
418
466
|
|
|
419
467
|
const scopeDepth = scopeDepthForConfigPath(sourcePath);
|
|
468
|
+
validatePathsStayWithinRepository({
|
|
469
|
+
paths,
|
|
470
|
+
sourcePath,
|
|
471
|
+
label: `${label}.paths`,
|
|
472
|
+
issues,
|
|
473
|
+
});
|
|
420
474
|
|
|
421
475
|
if (
|
|
422
476
|
alwaysApprove &&
|
|
@@ -12,6 +12,11 @@ export type AgenticOwnersPathRule = {
|
|
|
12
12
|
* no owners, so they never enroll a review.
|
|
13
13
|
*/
|
|
14
14
|
readonly globalExclusion?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Glob patterns relative to the directory containing `.agentic-owners`.
|
|
17
|
+
* Root-policy paths are relative to the repository root.
|
|
18
|
+
* Leading `../` segments may address sibling trees but cannot leave the repo.
|
|
19
|
+
*/
|
|
15
20
|
readonly paths: readonly string[];
|
|
16
21
|
/**
|
|
17
22
|
* Team slugs (or `org/team` handles) that own these paths. A policy may
|