@sassoftware/sas-score-mcp-serverjs 0.4.1-21 → 0.4.1-24
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/.skills/agents/sas-viya-scoring-expert.md +58 -0
- package/.skills/copilot-instructions.md +146 -0
- package/{skills → .skills/skills}/sas-find-library-smart/SKILL.md +0 -17
- package/{skills → .skills/skills}/sas-read-strategy/SKILL.md +27 -64
- package/.skills/skills/sas-request-classifier/SKILL.md +69 -0
- package/{skills → .skills/skills}/sas-score-workflow/SKILL.md +6 -93
- package/cli.js +13 -1
- package/package.json +2 -3
- package/scripts/setup-skills.js +23 -69
- package/src/setupSkills.js +37 -0
- package/src/toolSet/findModel.js +1 -1
- package/src/toolSet/modelScore.js +2 -2
- package/src/toolSet/runJob.js +2 -2
- package/src/toolSet/runJobdef.js +2 -2
- package/skills/mcp-tool-description-optimizer/SKILL.md +0 -129
- package/skills/mcp-tool-description-optimizer/references/examples.md +0 -123
- package/skills/sas-spec-migration/SKILL.md +0 -303
- /package/{skills → .skills/skills}/sas-list-tables-smart/SKILL.md +0 -0
- /package/{skills → .skills/skills}/sas-read-and-score/SKILL.md +0 -0
package/scripts/setup-skills.js
CHANGED
|
@@ -1,78 +1,32 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
2
|
import fs from 'fs';
|
|
4
3
|
import path from 'path';
|
|
5
4
|
import { fileURLToPath } from 'url';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
function
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
5
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
6
|
+
// Paths
|
|
7
|
+
let client = (process.env.CLIENTNAME == null) ? '.github' : `.${process.env.CLIENTNAME.toLowerCase()}`;
|
|
8
|
+
const source = path.join(__dirname, `.skills`);
|
|
9
|
+
const destination = path.join(process.cwd(), client);
|
|
10
|
+
console.error(`📁 Copying ${source} to ${destination}...`);
|
|
11
|
+
function copyFolderSync(from, to) {
|
|
12
|
+
if (!fs.existsSync(from)) return;
|
|
13
|
+
if (!fs.existsSync(to)) fs.mkdirSync(to, { recursive: true });
|
|
14
|
+
console.error(`📁 Copying folder: ${from} to ${to}`);
|
|
15
|
+
fs.readdirSync(from).forEach(element => {
|
|
16
|
+
const fromPath = path.join(from, element);
|
|
17
|
+
const toPath = path.join(to, element);
|
|
18
|
+
if (fs.lstatSync(fromPath).isFile()) {
|
|
19
|
+
fs.copyFileSync(fromPath, toPath);
|
|
20
|
+
} else if (fs.lstatSync(fromPath).isDirectory()) {
|
|
21
|
+
copyFolderSync(fromPath, toPath);
|
|
22
|
+
}
|
|
22
23
|
});
|
|
23
|
-
} else {
|
|
24
|
-
fs.copyFileSync(src, dest);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// Get folder name from command line arguments or environment variable
|
|
29
|
-
const args = parseArgs({
|
|
30
|
-
options: {
|
|
31
|
-
'skills-folder': {
|
|
32
|
-
type: 'string',
|
|
33
|
-
short: 'f',
|
|
34
|
-
description: 'Skills folder name'
|
|
35
|
-
}
|
|
36
|
-
}});
|
|
37
|
-
|
|
38
|
-
let folderName = args.values['skills-folder'] || process.env.SKILLS_FOLDER_NAME;
|
|
39
|
-
if (folderName == null) {
|
|
40
|
-
folderName = '.github';
|
|
41
|
-
}
|
|
42
|
-
folderName = folderName + '/skills';
|
|
43
|
-
// If no folder name provided, show usage
|
|
44
|
-
if (!folderName) {
|
|
45
|
-
console.error('Usage:');
|
|
46
|
-
console.error(' npm run setup-skills -f <folder-name>');
|
|
47
|
-
console.error(' or set SKILLS_FOLDER_NAME environment variable');
|
|
48
|
-
console.error('\nExample:');
|
|
49
|
-
console.error(' npm run setup-skills -f my-skills-folder');
|
|
50
|
-
process.exit(0);
|
|
51
|
-
}
|
|
52
|
-
console.error(`Setting up skills in folder: ${folderName}`);
|
|
53
|
-
// Resolve paths
|
|
54
|
-
const skillsSourcePath = path.join(__dirname, '../skills');
|
|
55
|
-
const targetPath = path.join(process.cwd(), folderName);
|
|
56
|
-
|
|
57
|
-
// Check if skills folder exists
|
|
58
|
-
if (!fs.existsSync(skillsSourcePath)) {
|
|
59
|
-
console.error(`Error: Skills folder not found at ${skillsSourcePath}`);
|
|
60
|
-
process.exit(1);
|
|
61
24
|
}
|
|
62
25
|
|
|
63
26
|
try {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
console.error(
|
|
68
|
-
} else {
|
|
69
|
-
console.error(`✓ Folder already exists: ${targetPath}`);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// Copy skills folder contents to target
|
|
73
|
-
copyRecursiveSync(skillsSourcePath, targetPath);
|
|
74
|
-
console.error(`✓ Successfully copied skills to: ${targetPath}`);
|
|
75
|
-
} catch (error) {
|
|
76
|
-
console.error('Error during setup:', error.message);
|
|
77
|
-
process.exit(1);
|
|
27
|
+
copyFolderSync(source, destination);
|
|
28
|
+
console.error(`✅ Success: ${destination} folder is now in your project root.`);
|
|
29
|
+
} catch (err) {
|
|
30
|
+
console.error('❌ Error copying files:', err.message);
|
|
78
31
|
}
|
|
32
|
+
process.exit(0);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
import path from 'path';
|
|
4
|
+
import os from 'os';
|
|
5
|
+
import { fileURLToPath } from 'url';
|
|
6
|
+
|
|
7
|
+
function setupSkills(clientName) {
|
|
8
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
9
|
+
// Paths
|
|
10
|
+
let client = (clientName == null) ? '.github' : `.${clientName.toLowerCase()}`;
|
|
11
|
+
const source = path.join(__dirname, `../.skills`);
|
|
12
|
+
const destination = path.join(os.homedir(), client);
|
|
13
|
+
console.error(`📁 Copying ${source} to ${destination}...`);
|
|
14
|
+
function copyFolderSync(from, to) {
|
|
15
|
+
if (!fs.existsSync(from)) return;
|
|
16
|
+
if (!fs.existsSync(to)) fs.mkdirSync(to, { recursive: true });
|
|
17
|
+
console.error(`📁 Copying folder: ${from} to ${to}`);
|
|
18
|
+
fs.readdirSync(from).forEach(element => {
|
|
19
|
+
console.error(`📁 Processing: ${element}`);
|
|
20
|
+
const fromPath = path.join(from, element);
|
|
21
|
+
const toPath = path.join(to, element);
|
|
22
|
+
if (fs.lstatSync(fromPath).isFile()) {
|
|
23
|
+
fs.copyFileSync(fromPath, toPath);
|
|
24
|
+
} else if (fs.lstatSync(fromPath).isDirectory()) {
|
|
25
|
+
copyFolderSync(fromPath, toPath);
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
try {
|
|
31
|
+
copyFolderSync(source, destination);
|
|
32
|
+
console.error(`✅ Success: ${destination} folder is now in your project root.`);
|
|
33
|
+
} catch (err) {
|
|
34
|
+
console.error('❌ Error copying files:', err.message);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
export default setupSkills;
|
package/src/toolSet/findModel.js
CHANGED
|
@@ -9,7 +9,7 @@ import _listModels from '../toolHelpers/_listModels.js';
|
|
|
9
9
|
|
|
10
10
|
function findModel(_appContext) {
|
|
11
11
|
let description = `
|
|
12
|
-
find-model — locate a specific model deployed to MAS
|
|
12
|
+
find-model — locate a specific MAS model deployed to MAS server
|
|
13
13
|
|
|
14
14
|
USE when: find model, does model exist, is model deployed, lookup model, verify model exists
|
|
15
15
|
DO NOT USE for: list models (use list-models), model info/variables (use model-info), score model (use model-score), find table/job/lib (use respective tools), scr models (use scr-info/scr-score)
|
|
@@ -10,7 +10,7 @@ const log = debug('tools');
|
|
|
10
10
|
|
|
11
11
|
function modelScore(_appContext) {
|
|
12
12
|
let description = `
|
|
13
|
-
|
|
13
|
+
mas-score — score data using a deployed model on MAS.
|
|
14
14
|
|
|
15
15
|
USE when: score with model, predict using model, batch scoring, model predictions
|
|
16
16
|
DO NOT USE for: find model, model metadata, list models, run programs/jobs, query tables
|
|
@@ -40,7 +40,7 @@ Returns predictions, probabilities, scores merged with input data. Returns error
|
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
let spec = {
|
|
43
|
-
name: '
|
|
43
|
+
name: 'mas-score',
|
|
44
44
|
description: description,
|
|
45
45
|
inputSchema:z.object({
|
|
46
46
|
model: z.string(),
|
package/src/toolSet/runJob.js
CHANGED
|
@@ -9,9 +9,9 @@ import _jobSubmit from '../toolHelpers/_jobSubmit.js';
|
|
|
9
9
|
function runJob(_appContext) {
|
|
10
10
|
|
|
11
11
|
let description = `
|
|
12
|
-
run-job —
|
|
12
|
+
run-job — score with a deployed SAS Viya job.
|
|
13
13
|
|
|
14
|
-
USE when:
|
|
14
|
+
USE when: score with job, run job, execute job
|
|
15
15
|
DO NOT USE for: arbitrary SAS code (use run-sas-program), macros (use run-macro), list/find jobs
|
|
16
16
|
|
|
17
17
|
PARAMETERS
|
package/src/toolSet/runJobdef.js
CHANGED
|
@@ -10,9 +10,9 @@ function runJobdef(_appContext) {
|
|
|
10
10
|
// JSON object for LLM/tooling
|
|
11
11
|
|
|
12
12
|
let description = `
|
|
13
|
-
run-jobdef —
|
|
13
|
+
run-jobdef — score with a deployed SAS Viya job definition.
|
|
14
14
|
|
|
15
|
-
USE when:
|
|
15
|
+
USE when: score with jobdef, run jobdef, execute jobdef
|
|
16
16
|
DO NOT USE for: arbitrary SAS code (use run-sas-program), macros (use run-macro), list/find jobdefs
|
|
17
17
|
|
|
18
18
|
PARAMETERS
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: mcp-tool-description-optimizer
|
|
3
|
-
description: >
|
|
4
|
-
Optimize MCP (Model Context Protocol) tool descriptions for token efficiency and LLM routing accuracy.
|
|
5
|
-
Use this skill whenever a user shares a raw, verbose, or poorly structured MCP tool description and wants
|
|
6
|
-
it improved, rewritten, or reviewed. Trigger on phrases like: "optimize this tool description",
|
|
7
|
-
"rewrite my MCP tool description", "make this tool description more efficient", "clean up my tool spec",
|
|
8
|
-
"improve how Claude picks my tool", or when a user pastes a JavaScript/TypeScript tool description string
|
|
9
|
-
and asks for help with it. Also trigger when the user mentions token efficiency, tool routing,
|
|
10
|
-
or LLM disambiguation in the context of MCP servers.
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# MCP Tool Description Optimizer
|
|
14
|
-
|
|
15
|
-
Rewrites verbose or poorly structured MCP tool descriptions into compact, signal-rich versions that
|
|
16
|
-
improve LLM tool selection accuracy while reducing token usage.
|
|
17
|
-
|
|
18
|
-
## Why this matters
|
|
19
|
-
|
|
20
|
-
Claude and other LLMs select MCP tools based entirely on the `description` field. Descriptions that are
|
|
21
|
-
too long, redundant, or badly structured waste context tokens and reduce routing precision.
|
|
22
|
-
A well-optimized description:
|
|
23
|
-
- States what the tool does and when to use it upfront
|
|
24
|
-
- Eliminates redundancy (same info repeated across sections)
|
|
25
|
-
- Uses a compact, scannable format (labeled blocks, not nested markdown)
|
|
26
|
-
- Includes clear negative examples to prevent mis-routing
|
|
27
|
-
- Keeps parameters terse — name, type, default, one-line purpose
|
|
28
|
-
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
## Optimization Process
|
|
32
|
-
|
|
33
|
-
### Step 1 — Analyze the input description
|
|
34
|
-
|
|
35
|
-
Before rewriting, identify these problems in the original:
|
|
36
|
-
|
|
37
|
-
| Problem | Example |
|
|
38
|
-
|---|---|
|
|
39
|
-
| **Redundancy** | Trigger phrases listed in 3+ places |
|
|
40
|
-
| **Filler sections** | "Rationale", "Behavior Summary", "Response Contract" with no routing signal |
|
|
41
|
-
| **Orphaned syntax** | Arrows (`→`) or bullets with no target |
|
|
42
|
-
| **Overlong examples** | Long prose examples when one-liners suffice |
|
|
43
|
-
| **Heavy markdown** | `##` headers for every minor point |
|
|
44
|
-
| **Duplicated parameter docs** | Same param described in both a table and prose |
|
|
45
|
-
|
|
46
|
-
Call out 2–4 of the most impactful issues before writing the new version.
|
|
47
|
-
|
|
48
|
-
### Step 2 — Rewrite using the standard template
|
|
49
|
-
|
|
50
|
-
Use this exact block structure for the output. Omit blocks that don't apply.
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
<tool-name> — <one-line purpose>.
|
|
54
|
-
|
|
55
|
-
USE when: <comma-separated user intents or trigger phrases>
|
|
56
|
-
DO NOT USE for: <comma-separated anti-patterns with → redirect where applicable>
|
|
57
|
-
|
|
58
|
-
PARAMETERS
|
|
59
|
-
- <name>: <type> (default: <val>) — <one-line purpose>
|
|
60
|
-
...
|
|
61
|
-
|
|
62
|
-
ROUTING RULES
|
|
63
|
-
- "<trigger phrase>" → { param: value }
|
|
64
|
-
- "<trigger phrase>" → { param: value }
|
|
65
|
-
- <ambiguous case> → <ask for clarification | default behavior>
|
|
66
|
-
|
|
67
|
-
EXAMPLES
|
|
68
|
-
- "<user utterance>" → { param: value, ... }
|
|
69
|
-
- "<user utterance>" → { param: value, ... }
|
|
70
|
-
|
|
71
|
-
NEGATIVE EXAMPLES (do not route here)
|
|
72
|
-
- "<user utterance>" → <correct tool>
|
|
73
|
-
|
|
74
|
-
PAGINATION (include only if tool is paginated)
|
|
75
|
-
If returned count === limit → hint: next start = start + limit.
|
|
76
|
-
If start > 1 and result empty → note paging may exceed available items.
|
|
77
|
-
|
|
78
|
-
ERRORS
|
|
79
|
-
<One or two lines: return structure, hallucination policy>
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
### Step 3 — Apply these rules consistently
|
|
83
|
-
|
|
84
|
-
**USE/DO NOT USE block**
|
|
85
|
-
- Write as comma-separated inline list, not a bullet list
|
|
86
|
-
- DO NOT USE entries should name the redirect tool in parentheses where known
|
|
87
|
-
|
|
88
|
-
**ROUTING RULES block**
|
|
89
|
-
- One rule per line; quote the trigger phrase; use `→ { }` for param mapping
|
|
90
|
-
- Consolidate synonyms on one line: `"cas libs / cas libraries / in cas" → { server: 'cas' }`
|
|
91
|
-
- List the default/fallback rule last
|
|
92
|
-
|
|
93
|
-
**PARAMETERS block**
|
|
94
|
-
- One line per param: `- name: type (default: val) — purpose`
|
|
95
|
-
- Skip obvious params (e.g. don't explain what `limit` means if it's standard pagination)
|
|
96
|
-
|
|
97
|
-
**EXAMPLES block**
|
|
98
|
-
- Each example fits on one line
|
|
99
|
-
- For "next page" examples, include the prior call's state inline: `"next" (prev: start:1, limit:10) → { start: 11, limit: 10 }`
|
|
100
|
-
|
|
101
|
-
**NEGATIVE EXAMPLES block**
|
|
102
|
-
- Only include when mis-routing is a real risk
|
|
103
|
-
- Format: `"<utterance>" → <correct-tool-name>`
|
|
104
|
-
|
|
105
|
-
**Tone**
|
|
106
|
-
- Imperative, terse. No filler words ("Please note that...", "It is important to...")
|
|
107
|
-
- Never include a "Rationale" or "Behavior Summary" section — if behavior matters, encode it as a rule
|
|
108
|
-
|
|
109
|
-
### Step 4 — Validate before returning
|
|
110
|
-
|
|
111
|
-
Check the rewritten description against this list:
|
|
112
|
-
|
|
113
|
-
- [ ] No trigger phrase appears in more than one block
|
|
114
|
-
- [ ] No orphaned `→` arrows or dangling bullets
|
|
115
|
-
- [ ] Parameter defaults are stated explicitly
|
|
116
|
-
- [ ] Negative examples cover the tool's most common mis-routing risks
|
|
117
|
-
- [ ] Total length is ≤ 50% of the original (target: 30–40% reduction)
|
|
118
|
-
|
|
119
|
-
---
|
|
120
|
-
|
|
121
|
-
## Output format
|
|
122
|
-
|
|
123
|
-
Always return:
|
|
124
|
-
|
|
125
|
-
1. **Analysis** — 2–4 bullet points naming the key issues found in the original
|
|
126
|
-
2. **Rewritten description** — inside a JavaScript code block (matching the user's original code style)
|
|
127
|
-
3. **Change summary** — a short table or bullet list of what changed and why
|
|
128
|
-
|
|
129
|
-
See `references/examples.md` for before/after examples of real tool descriptions.
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
# Before / After Examples
|
|
2
|
-
|
|
3
|
-
## Example 1 — list-libraries (SAS Viya MCP)
|
|
4
|
-
|
|
5
|
-
### BEFORE (~620 tokens)
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
## list-libraries — enumerate CAS or SAS libraries
|
|
9
|
-
|
|
10
|
-
LLM Invocation Guidance (critical)
|
|
11
|
-
Use THIS tool when the user asks for: "list libs", "list libraries", "show cas libs", "show sas libs",
|
|
12
|
-
"what libraries are available", "list caslib(s)", "enumerate libraries", "libraries in cas", "libraries in sas".
|
|
13
|
-
DO NOT use this tool when the user asks for: tables inside a specific library (choose listTables),
|
|
14
|
-
columns/metadata of a table, job/program execution, models, or scoring.
|
|
15
|
-
|
|
16
|
-
Trigger Phrase → Parameter Mapping
|
|
17
|
-
- "cas libs" / "in cas" / "cas libraries" → { server: 'cas' }
|
|
18
|
-
- "sas libs" / "in sas" / "base sas libraries" → { server: 'sas' }
|
|
19
|
-
- "all libs" / "all libs" -> {server: 'all'}
|
|
20
|
-
→ { server: 'all' }
|
|
21
|
-
- "next" (after prior call) → { start: previous.start + previous.limit }
|
|
22
|
-
- "first 20 cas libs" → { server: 'cas', limit: 20 }
|
|
23
|
-
- If server unspecified: default to all.
|
|
24
|
-
|
|
25
|
-
Parameters
|
|
26
|
-
- server (cas|sas|all, default 'all')
|
|
27
|
-
- limit (integer > 0, default 10)
|
|
28
|
-
- start (1-based offset, default 1)
|
|
29
|
-
- where (optional filter expression, default '')
|
|
30
|
-
|
|
31
|
-
Response Contract
|
|
32
|
-
Return JSON-like structure from helper; consumers may extract an array of library objects/names.
|
|
33
|
-
If number of returned items === limit supply a pagination hint: start = start + limit.
|
|
34
|
-
|
|
35
|
-
Behavior Summary
|
|
36
|
-
- Pure listing; no side effects.
|
|
37
|
-
- If ambiguous short request like "list" or "libs" and no prior context: assume { server: 'cas' }.
|
|
38
|
-
- If user explicitly asks for ALL (e.g. "all cas libs") and count likely large, honor limit=50 unless
|
|
39
|
-
user supplies a value; include note about paging.
|
|
40
|
-
|
|
41
|
-
Disambiguation Rules
|
|
42
|
-
- If user mentions a singular library name plus desire for tables ("list tables in SASHELP") choose
|
|
43
|
-
listTables (not this tool).
|
|
44
|
-
- If user mixes "tables" and "libraries" ask for clarification unless clearly about libraries.
|
|
45
|
-
|
|
46
|
-
Examples
|
|
47
|
-
- "list libraries" → { server: 'all', start:1, limit:10 }
|
|
48
|
-
- "list libs" → { server: 'all', start:1, limit:10 }
|
|
49
|
-
- "list sas libs" → { server: 'sas' }
|
|
50
|
-
- "list cas libraries" → { server: 'cas' }
|
|
51
|
-
- "show me 25 cas libraries" → { server:'cas', limit:25 }
|
|
52
|
-
- "next" (after prior call {start:1,limit:10}) → { start:11, limit:10 }
|
|
53
|
-
- "filter cas libs" (no criterion) → ask: "Provide a filter or continue without one?"
|
|
54
|
-
|
|
55
|
-
Negative Examples (do not route here)
|
|
56
|
-
- "list tables in public" (route to list-tables)
|
|
57
|
-
- "list models, list tables, list jobs, list jobdef and similar request"
|
|
58
|
-
- "describe library" (likely list-tables or table-info depending on follow-up)
|
|
59
|
-
- "run program to make a lib" (run-sas-program tool)
|
|
60
|
-
|
|
61
|
-
Error Handling
|
|
62
|
-
- On backend error: return structured error with message field; do not hallucinate libraries.
|
|
63
|
-
- Empty result set → return empty list plus (if start>1) a hint that paging may have exceeded available items.
|
|
64
|
-
|
|
65
|
-
Rationale
|
|
66
|
-
Concise, signal-rich description increases probability this spec is selected for generic library
|
|
67
|
-
enumeration intents.
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
### AFTER (~210 tokens)
|
|
71
|
-
|
|
72
|
-
```
|
|
73
|
-
list-libraries — enumerate CAS or SAS libraries.
|
|
74
|
-
|
|
75
|
-
USE when: list/show/enumerate libraries, caslibs, sas libs, available libraries
|
|
76
|
-
DO NOT USE for: listing tables in a library (→ list-tables), column/table metadata, job execution, models, scoring
|
|
77
|
-
|
|
78
|
-
PARAMETERS
|
|
79
|
-
- server: 'cas' | 'sas' | 'all' (default: 'all')
|
|
80
|
-
- limit: integer > 0 (default: 10)
|
|
81
|
-
- start: 1-based offset (default: 1)
|
|
82
|
-
- where: optional filter expression (default: '')
|
|
83
|
-
|
|
84
|
-
ROUTING RULES
|
|
85
|
-
- "cas libs / cas libraries / in cas" → { server: 'cas' }
|
|
86
|
-
- "sas libs / sas libraries / in sas" → { server: 'sas' }
|
|
87
|
-
- "all libs / all libraries" → { server: 'all' }
|
|
88
|
-
- "all cas libs" with no limit given → { server: 'cas', limit: 50 } + paging note
|
|
89
|
-
- "next" after prior call (start:S, limit:L) → { start: S + L, limit: L }
|
|
90
|
-
- "filter cas libs" with no filter given → ask: "What filter expression should I apply?"
|
|
91
|
-
- server unspecified / ambiguous "list"/"libs" → { server: 'cas' }
|
|
92
|
-
|
|
93
|
-
EXAMPLES
|
|
94
|
-
- "list libraries" → { server: 'all', start: 1, limit: 10 }
|
|
95
|
-
- "list cas libraries" → { server: 'cas', start: 1, limit: 10 }
|
|
96
|
-
- "show me 25 sas libs" → { server: 'sas', limit: 25, start: 1 }
|
|
97
|
-
- "next" (prev: start:1,limit:10) → { server: <same>, start: 11, limit: 10 }
|
|
98
|
-
|
|
99
|
-
NEGATIVE EXAMPLES (do not route here)
|
|
100
|
-
- "list tables in SASHELP" → list-tables
|
|
101
|
-
- "list models / jobs / jobdefs" → respective tools
|
|
102
|
-
- "run a program to create a lib" → run-sas-program
|
|
103
|
-
|
|
104
|
-
PAGINATION
|
|
105
|
-
If returned count === limit → hint: next start = start + limit.
|
|
106
|
-
If start > 1 and result empty → note paging may exceed available items.
|
|
107
|
-
|
|
108
|
-
ERRORS
|
|
109
|
-
Return structured error with message field. Never hallucinate library names.
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
**Token reduction: ~66%**
|
|
113
|
-
|
|
114
|
-
---
|
|
115
|
-
|
|
116
|
-
## Key patterns illustrated
|
|
117
|
-
|
|
118
|
-
- Trigger phrases consolidated from 3 blocks → 1 ROUTING RULES block
|
|
119
|
-
- "Rationale", "Behavior Summary", "Response Contract" sections eliminated
|
|
120
|
-
- Orphaned `→ { server: 'all' }` arrow removed
|
|
121
|
-
- Parameter defaults made explicit inline
|
|
122
|
-
- Examples trimmed to one line each
|
|
123
|
-
- Negative examples now name the redirect tool explicitly
|