Skip to content

Commit c8f8d1c

Browse files
committed
fix
1 parent 9fb5002 commit c8f8d1c

7 files changed

Lines changed: 11 additions & 9 deletions

File tree

docker-compose-library.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ services:
2020
- ${GCP_KEYS_PATH:-./tmp/.gcp-keys-dummy}:/opt/app-root/.gcp-keys:ro
2121
- ./tests/e2e/rag:/opt/app-root/src/.llama/storage/rag:Z
2222
- ${HF_CACHE_PATH:-./tmp/.hf-cache}:/opt/app-root/src/.cache/huggingface
23+
- ./tests/e2e/skills:/app-root/skills:ro,Z
2324
- ./tests/e2e/secrets/mcp-token:/tmp/mcp-token:ro,z
2425
- ./tests/e2e/secrets/invalid-mcp-token:/tmp/invalid-mcp-token:ro,z
2526
environment:

docker-compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ services:
8787
- "8080:8080"
8888
volumes:
8989
- ./lightspeed-stack.yaml:/app-root/lightspeed-stack.yaml:z
90+
- ./tests/e2e/skills:/app-root/skills:ro,z
9091
- ./tests/e2e/secrets/mcp-token:/tmp/mcp-token:ro,z
9192
- ./tests/e2e/secrets/invalid-mcp-token:/tmp/invalid-mcp-token:ro,z
9293
environment:

tests/e2e/configuration/library-mode/lightspeed-stack-skills-directory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ rag:
3535

3636
skills:
3737
paths:
38-
- tests/e2e/skills
38+
- skills

tests/e2e/configuration/library-mode/lightspeed-stack-skills.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ rag:
3535

3636
skills:
3737
paths:
38-
- tests/e2e/skills/echo
38+
- skills/echo

tests/e2e/configuration/server-mode/lightspeed-stack-skills-directory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ rag:
3636

3737
skills:
3838
paths:
39-
- tests/e2e/skills
39+
- skills

tests/e2e/configuration/server-mode/lightspeed-stack-skills.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ rag:
3636

3737
skills:
3838
paths:
39-
- tests/e2e/skills/echo
39+
- skills/echo

tests/e2e/features/skills.feature

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Feature: Agent skills tests
264264
[
265265
{
266266
"status": "success",
267-
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/Users/jboos/Code/jrobertboos/lightspeed-stack/tests/e2e/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
267+
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/app-root/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
268268
"type": "function_call_output"
269269
}
270270
]
@@ -300,7 +300,7 @@ Feature: Agent skills tests
300300
[
301301
{
302302
"status": "success",
303-
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/Users/jboos/Code/jrobertboos/lightspeed-stack/tests/e2e/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
303+
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/app-root/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
304304
"type": "function_call_output"
305305
}
306306
]
@@ -546,7 +546,7 @@ Feature: Agent skills tests
546546
[
547547
{
548548
"status": "success",
549-
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/Users/jboos/Code/jrobertboos/lightspeed-stack/tests/e2e/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
549+
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/app-root/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
550550
"type": "function_call_output"
551551
}
552552
]
@@ -689,7 +689,7 @@ Feature: Agent skills tests
689689
},
690690
{
691691
"status": "success",
692-
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/Users/jboos/Code/jrobertboos/lightspeed-stack/tests/e2e/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
692+
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/app-root/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
693693
"type": "function_call_output",
694694
"round": 2
695695
},
@@ -750,7 +750,7 @@ Feature: Agent skills tests
750750
},
751751
{
752752
"status": "success",
753-
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/Users/jboos/Code/jrobertboos/lightspeed-stack/tests/e2e/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
753+
"content": "<skill>\n<name>echo</name>\n<description>Echo back the user's input exactly as provided. Use when a user asks to echo, repeat, or mirror text.</description>\n<uri>/app-root/skills/echo</uri>\n\n<resources>\n<resource name=\"references/guide.md\" />\n</resources>\n\n<scripts>\n<!-- No scripts -->\n</scripts>\n\n<instructions>\n# Echo Skill\n\n## When to use this skill\n\nUse this skill when:\n- A user asks to echo or repeat text\n- A user wants to verify that the agent can return their input verbatim\n\n## Instructions\n\n1. Read the user's input text\n2. Return the exact text back to the user without modification\n\nFor formatting guidelines, see [references/guide.md](references/guide.md).\n</instructions>\n</skill>\n",
754754
"type": "function_call_output",
755755
"round": 2
756756
},

0 commit comments

Comments
 (0)