Skip to content

Commit e480c46

Browse files
moshloopgithub-actions[bot]
authored andcommitted
chore: update incident-commander image version to 0.0.1843
1 parent e5a4da1 commit e480c46

4 files changed

Lines changed: 22 additions & 32 deletions

File tree

agent-chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
image:
44
repository: docker.io/flanksource/incident-commander
55
pullPolicy: IfNotPresent
6-
tag: "v0.0.1841"
6+
tag: "v0.0.1843"
77
global:
88
# -v, -vv, -vvv
99
logLevel: ""

chart/crds/mission-control.flanksource.com_playbooks.yaml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -432,34 +432,29 @@ spec:
432432
type: object
433433
type: array
434434
skills:
435-
description: |-
436-
Skills references reusable skill files from git repositories.
437-
Each skill file's content is prepended to the system prompt.
438-
If any skill has JsonSchemaPath set, that schema is used for output validation.
435+
description: Skills references reusable Genkit skill libraries.
439436
items:
440437
description: |-
441-
AISkill references a skill file in a git repository.
442-
The repo is cloned at execution time and the skill file content is
443-
prepended to the system prompt.
438+
AISkill references a Genkit skill library directory, either from a git repository
439+
(when Connection is set) or from the local filesystem (when Connection is empty).
440+
Skills are exposed to the model as loadable skills via the use_skill tool.
444441
properties:
445442
branch:
446443
description: Branch or tag to checkout (optional,
447444
defaults to the repo's default branch)
448445
type: string
449446
connection:
450-
description: Git connection reference (e.g., "connection://github/my-org")
451-
type: string
452-
jsonSchemaPath:
453447
description: |-
454-
JsonSchemaPath is the path to a JSON schema file in the repo.
455-
If set, the AI response must conform to this schema (takes precedence over inline OutputSchema).
448+
Git connection reference (e.g., "connection://github/my-org").
449+
When empty, Path is read from the local filesystem.
456450
type: string
457451
path:
458-
description: Path to the skill file within the repo
459-
(e.g., "skills/access-auditor.md")
452+
description: |-
453+
Path to a directory that contains skill subdirectories, each with a SKILL.md file.
454+
Must be the *parent* directory of the skill directories, not a skill directory itself.
455+
Example: if skills live at /data/skills/foo/SKILL.md, pass "/data/skills" — not "/data/skills/foo".
460456
type: string
461457
required:
462-
- connection
463458
- path
464459
type: object
465460
type: array

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ image:
2424
# @schema
2525
# required: false
2626
# @schema
27-
tag: "v0.0.1841"
27+
tag: "v0.0.1843"
2828
# @schema
2929
# required: false
3030
# @schema

crd-chart/templates/mission-control.flanksource.com_playbooks.yaml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -432,34 +432,29 @@ spec:
432432
type: object
433433
type: array
434434
skills:
435-
description: |-
436-
Skills references reusable skill files from git repositories.
437-
Each skill file's content is prepended to the system prompt.
438-
If any skill has JsonSchemaPath set, that schema is used for output validation.
435+
description: Skills references reusable Genkit skill libraries.
439436
items:
440437
description: |-
441-
AISkill references a skill file in a git repository.
442-
The repo is cloned at execution time and the skill file content is
443-
prepended to the system prompt.
438+
AISkill references a Genkit skill library directory, either from a git repository
439+
(when Connection is set) or from the local filesystem (when Connection is empty).
440+
Skills are exposed to the model as loadable skills via the use_skill tool.
444441
properties:
445442
branch:
446443
description: Branch or tag to checkout (optional,
447444
defaults to the repo's default branch)
448445
type: string
449446
connection:
450-
description: Git connection reference (e.g., "connection://github/my-org")
451-
type: string
452-
jsonSchemaPath:
453447
description: |-
454-
JsonSchemaPath is the path to a JSON schema file in the repo.
455-
If set, the AI response must conform to this schema (takes precedence over inline OutputSchema).
448+
Git connection reference (e.g., "connection://github/my-org").
449+
When empty, Path is read from the local filesystem.
456450
type: string
457451
path:
458-
description: Path to the skill file within the repo
459-
(e.g., "skills/access-auditor.md")
452+
description: |-
453+
Path to a directory that contains skill subdirectories, each with a SKILL.md file.
454+
Must be the *parent* directory of the skill directories, not a skill directory itself.
455+
Example: if skills live at /data/skills/foo/SKILL.md, pass "/data/skills" — not "/data/skills/foo".
460456
type: string
461457
required:
462-
- connection
463458
- path
464459
type: object
465460
type: array

0 commit comments

Comments
 (0)