@codemieai/code 0.0.51 → 0.0.53
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/README.md +1 -0
- package/dist/agents/core/BaseAgentAdapter.d.ts +10 -1
- package/dist/agents/core/BaseAgentAdapter.d.ts.map +1 -1
- package/dist/agents/core/BaseAgentAdapter.js +98 -25
- package/dist/agents/core/BaseAgentAdapter.js.map +1 -1
- package/dist/agents/core/session/SessionStore.d.ts +4 -0
- package/dist/agents/core/session/SessionStore.d.ts.map +1 -1
- package/dist/agents/core/session/SessionStore.js +16 -4
- package/dist/agents/core/session/SessionStore.js.map +1 -1
- package/dist/agents/plugins/claude/claude.plugin.d.ts.map +1 -1
- package/dist/agents/plugins/claude/claude.plugin.js +11 -3
- package/dist/agents/plugins/claude/claude.plugin.js.map +1 -1
- package/dist/agents/plugins/claude/plugin/.claude-plugin/plugin.json +1 -1
- package/dist/agents/plugins/claude/plugin/skills/claude-setup-audit/references/best-practices.md +1 -1
- package/dist/agents/plugins/claude/plugin/skills/msgraph/SKILL.md +34 -0
- package/dist/agents/plugins/claude/plugin/skills/msgraph/scripts/msgraph.js +185 -19
- package/dist/agents/plugins/codemie-code.plugin.d.ts.map +1 -1
- package/dist/agents/plugins/codemie-code.plugin.js +45 -7
- package/dist/agents/plugins/codemie-code.plugin.js.map +1 -1
- package/dist/agents/plugins/gemini/gemini.plugin.d.ts.map +1 -1
- package/dist/agents/plugins/gemini/gemini.plugin.js +7 -3
- package/dist/agents/plugins/gemini/gemini.plugin.js.map +1 -1
- package/dist/agents/plugins/opencode/opencode-dynamic-models.d.ts +34 -0
- package/dist/agents/plugins/opencode/opencode-dynamic-models.d.ts.map +1 -0
- package/dist/agents/plugins/opencode/opencode-dynamic-models.js +182 -0
- package/dist/agents/plugins/opencode/opencode-dynamic-models.js.map +1 -0
- package/dist/agents/plugins/opencode/opencode-model-configs.d.ts +21 -2
- package/dist/agents/plugins/opencode/opencode-model-configs.d.ts.map +1 -1
- package/dist/agents/plugins/opencode/opencode-model-configs.js +105 -8
- package/dist/agents/plugins/opencode/opencode-model-configs.js.map +1 -1
- package/dist/agents/plugins/opencode/opencode.plugin.d.ts.map +1 -1
- package/dist/agents/plugins/opencode/opencode.plugin.js +36 -6
- package/dist/agents/plugins/opencode/opencode.plugin.js.map +1 -1
- package/dist/agents/plugins/opencode/opencode.sqlite-reader.d.ts +10 -5
- package/dist/agents/plugins/opencode/opencode.sqlite-reader.d.ts.map +1 -1
- package/dist/agents/plugins/opencode/opencode.sqlite-reader.js +49 -5
- package/dist/agents/plugins/opencode/opencode.sqlite-reader.js.map +1 -1
- package/dist/cli/commands/assistants/constants.d.ts +5 -0
- package/dist/cli/commands/assistants/constants.d.ts.map +1 -1
- package/dist/cli/commands/assistants/constants.js +6 -1
- package/dist/cli/commands/assistants/constants.js.map +1 -1
- package/dist/cli/commands/assistants/setup/index.js +107 -3
- package/dist/cli/commands/assistants/setup/index.js.map +1 -1
- package/dist/cli/commands/assistants/setup/summary/index.d.ts +1 -1
- package/dist/cli/commands/assistants/setup/summary/index.d.ts.map +1 -1
- package/dist/cli/commands/assistants/setup/summary/index.js +4 -1
- package/dist/cli/commands/assistants/setup/summary/index.js.map +1 -1
- package/dist/cli/commands/models.d.ts +3 -0
- package/dist/cli/commands/models.d.ts.map +1 -0
- package/dist/cli/commands/models.js +71 -0
- package/dist/cli/commands/models.js.map +1 -0
- package/dist/cli/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/providers/plugins/bedrock/bedrock.models.d.ts +1 -1
- package/dist/providers/plugins/bedrock/bedrock.models.d.ts.map +1 -1
- package/dist/providers/plugins/bedrock/bedrock.models.js +12 -9
- package/dist/providers/plugins/bedrock/bedrock.models.js.map +1 -1
- package/dist/providers/plugins/litellm/index.d.ts.map +1 -1
- package/dist/providers/plugins/litellm/index.js +3 -0
- package/dist/providers/plugins/litellm/index.js.map +1 -1
- package/dist/providers/plugins/litellm/litellm.models.d.ts +3 -2
- package/dist/providers/plugins/litellm/litellm.models.d.ts.map +1 -1
- package/dist/providers/plugins/litellm/litellm.models.js +7 -3
- package/dist/providers/plugins/litellm/litellm.models.js.map +1 -1
- package/dist/providers/plugins/litellm/litellm.template.js +1 -1
- package/dist/providers/plugins/sso/sso.http-client.d.ts +40 -0
- package/dist/providers/plugins/sso/sso.http-client.d.ts.map +1 -1
- package/dist/providers/plugins/sso/sso.http-client.js +21 -0
- package/dist/providers/plugins/sso/sso.http-client.js.map +1 -1
- package/dist/utils/config.d.ts +7 -0
- package/dist/utils/config.d.ts.map +1 -1
- package/dist/utils/config.js +36 -0
- package/dist/utils/config.js.map +1 -1
- package/dist/utils/sdk-client.js +1 -1
- package/dist/utils/sdk-client.js.map +1 -1
- package/package.json +4 -1
- package/scripts/validate-secrets.js +1 -1
- package/src/workflows/templates/github/code-ci.yml +8 -8
- package/src/workflows/templates/github/inline-fix.yml +12 -12
- package/src/workflows/templates/github/pr-review.yml +5 -5
|
@@ -80,12 +80,12 @@ jobs:
|
|
|
80
80
|
|
|
81
81
|
steps:
|
|
82
82
|
- name: Checkout PR code
|
|
83
|
-
uses: actions/checkout@
|
|
83
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
84
84
|
with:
|
|
85
85
|
fetch-depth: 0
|
|
86
86
|
|
|
87
87
|
- name: Set up Node.js
|
|
88
|
-
uses: actions/setup-node@
|
|
88
|
+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
89
89
|
with:
|
|
90
90
|
node-version: '24'
|
|
91
91
|
|
|
@@ -184,7 +184,7 @@ jobs:
|
|
|
184
184
|
"command": "npx",
|
|
185
185
|
"args": [
|
|
186
186
|
"-y",
|
|
187
|
-
"@modelcontextprotocol/server-github"
|
|
187
|
+
"@modelcontextprotocol/server-github@2025.4.8"
|
|
188
188
|
],
|
|
189
189
|
"env": {
|
|
190
190
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "$GITHUB_TOKEN"
|
|
@@ -616,7 +616,7 @@ jobs:
|
|
|
616
616
|
|
|
617
617
|
- name: Upload Review Output
|
|
618
618
|
if: always()
|
|
619
|
-
uses: actions/upload-artifact@
|
|
619
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
|
620
620
|
with:
|
|
621
621
|
name: codemie-review-output-${{ github.run_number }}
|
|
622
622
|
path: /tmp/codemie-review-output.log
|
|
@@ -624,7 +624,7 @@ jobs:
|
|
|
624
624
|
|
|
625
625
|
- name: Post failure comment
|
|
626
626
|
if: failure() && steps.claude_review.outcome == 'failure'
|
|
627
|
-
uses: actions/github-script@
|
|
627
|
+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
|
|
628
628
|
with:
|
|
629
629
|
github-token: ${{ steps.generate_token.outputs.token }}
|
|
630
630
|
script: |
|