opencode-gitlab-dap 1.11.0 → 1.12.0
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/index.cjs +7 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3604,7 +3604,8 @@ var MEMORY_TYPES = [
|
|
|
3604
3604
|
"architecture",
|
|
3605
3605
|
"conventions",
|
|
3606
3606
|
"troubleshooting",
|
|
3607
|
-
"people-and-contexts"
|
|
3607
|
+
"people-and-contexts",
|
|
3608
|
+
"plans"
|
|
3608
3609
|
];
|
|
3609
3610
|
var MEMORY_DIRS = {
|
|
3610
3611
|
all: MEMORY_TYPES.map((t) => `${PREFIX}/memory/${t}`),
|
|
@@ -3618,7 +3619,8 @@ var RECORD_TYPES = [
|
|
|
3618
3619
|
"architecture",
|
|
3619
3620
|
"convention",
|
|
3620
3621
|
"troubleshooting",
|
|
3621
|
-
"people"
|
|
3622
|
+
"people",
|
|
3623
|
+
"plan"
|
|
3622
3624
|
];
|
|
3623
3625
|
var RECORD_DIR = {
|
|
3624
3626
|
fact: `${PREFIX}/memory/facts`,
|
|
@@ -3627,7 +3629,8 @@ var RECORD_DIR = {
|
|
|
3627
3629
|
architecture: `${PREFIX}/memory/architecture`,
|
|
3628
3630
|
convention: `${PREFIX}/memory/conventions`,
|
|
3629
3631
|
troubleshooting: `${PREFIX}/memory/troubleshooting`,
|
|
3630
|
-
people: `${PREFIX}/memory/people-and-contexts
|
|
3632
|
+
people: `${PREFIX}/memory/people-and-contexts`,
|
|
3633
|
+
plan: `${PREFIX}/memory/plans`
|
|
3631
3634
|
};
|
|
3632
3635
|
var PROJECT_ID_DESC = 'FULL project path with namespace (e.g., "gitlab-org/gitlab"). Must contain a slash. Never use just the project name.';
|
|
3633
3636
|
function today() {
|
|
@@ -3707,7 +3710,7 @@ ${entries}`
|
|
|
3707
3710
|
}
|
|
3708
3711
|
}),
|
|
3709
3712
|
gitlab_memory_record: (0, import_plugin5.tool)({
|
|
3710
|
-
description: "Record knowledge in project memory. Each record creates its own page \u2014 safe for parallel writes.\nTypes:\n fact \u2014 stable truths (tech stack, dependencies, deploy targets, project metadata)\n decision \u2014 architectural choices with reasoning (why X over Y)\n pattern \u2014 recurring observations that may evolve into skills\n architecture \u2014 system design, module structure, data flow, key abstractions\n convention \u2014 coding standards, naming patterns, review process, commit conventions\n troubleshooting \u2014 known issues, workarounds, debugging tips, common errors\n people \u2014 team members, roles, ownership areas, contact context",
|
|
3713
|
+
description: "Record knowledge in project memory. Each record creates its own page \u2014 safe for parallel writes.\nTypes:\n fact \u2014 stable truths (tech stack, dependencies, deploy targets, project metadata)\n decision \u2014 architectural choices with reasoning (why X over Y)\n pattern \u2014 recurring observations that may evolve into skills\n architecture \u2014 system design, module structure, data flow, key abstractions\n convention \u2014 coding standards, naming patterns, review process, commit conventions\n troubleshooting \u2014 known issues, workarounds, debugging tips, common errors\n people \u2014 team members, roles, ownership areas, contact context\n plan \u2014 implementation plans, feature designs, task breakdowns, roadmap items",
|
|
3711
3714
|
args: {
|
|
3712
3715
|
project_id: z5.string().describe(PROJECT_ID_DESC),
|
|
3713
3716
|
type: z5.enum([...RECORD_TYPES]).describe("Type of knowledge to record"),
|