-
Notifications
You must be signed in to change notification settings - Fork 4
feat(sdk): Extends mcp protocol support #89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
91c051c
6caa860
b834d25
bfc7f67
b425014
e254794
ceb1d91
2c7711e
c78b0de
d06f4ab
a6c2e5b
7310b5e
44a6253
702fb99
5952d3e
b771d77
60a0734
1210bbe
f118c61
485078b
030ab50
238f524
a95b598
7989439
b89b4f0
520f22e
113ddfb
a1cdbe2
47cf023
23b718b
bfb4dd9
6fa75d8
4fea313
0ffcc88
31cfadd
7af6e15
7114c18
d29508d
81b7b35
dd673f3
7b835b1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,11 +1,12 @@ | ||||||
| /* eslint-disable */ | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace blanket ESLint disable with specific rule exemptions. The Apply this approach instead: -/* eslint-disable */
+/* eslint-disable import/no-default-export */(Adjust the specific rule as needed based on actual violations) 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| export default { | ||||||
| displayName: 'demo-showcase-e2e', | ||||||
| preset: '../../jest.preset.js', | ||||||
| displayName: 'demo-transparent-auth-e2e', | ||||||
| preset: '../../../jest.preset.js', | ||||||
| testEnvironment: 'node', | ||||||
| testMatch: ['<rootDir>/e2e/**/*.e2e.ts'], | ||||||
| testTimeout: 30000, | ||||||
| setupFilesAfterEnv: ['<rootDir>/../../libs/testing/src/setup.ts'], | ||||||
| testMatch: ['<rootDir>/e2e/**/*.e2e.test.ts'], | ||||||
| testTimeout: 60000, | ||||||
| maxWorkers: 1, | ||||||
| setupFilesAfterEnv: ['<rootDir>/../../../libs/testing/src/setup.ts'], | ||||||
| transform: { | ||||||
| '^.+\\.[tj]s$': [ | ||||||
| '@swc/jest', | ||||||
|
|
@@ -36,11 +37,12 @@ export default { | |||||
| moduleFileExtensions: ['ts', 'js', 'html'], | ||||||
| transformIgnorePatterns: ['node_modules/(?!(jose)/)'], | ||||||
| moduleNameMapper: { | ||||||
| '^@frontmcp/testing$': '<rootDir>/../../libs/testing/src/index.ts', | ||||||
| '^@frontmcp/testing/setup$': '<rootDir>/../../libs/testing/src/setup.ts', | ||||||
| '^@frontmcp/sdk$': '<rootDir>/../../libs/sdk/src/index.ts', | ||||||
| '^@frontmcp/adapters$': '<rootDir>/../../libs/adapters/src/index.ts', | ||||||
| '^@frontmcp/plugins$': '<rootDir>/../../libs/plugins/src/index.ts', | ||||||
| '^@frontmcp/testing$': '<rootDir>/../../../libs/testing/src/index.ts', | ||||||
| '^@frontmcp/testing/setup$': '<rootDir>/../../../libs/testing/src/setup.ts', | ||||||
| '^@frontmcp/sdk$': '<rootDir>/../../../libs/sdk/src/index.ts', | ||||||
| '^@frontmcp/sdk/(.*)$': '<rootDir>/../../../libs/sdk/src/$1', | ||||||
| '^@frontmcp/adapters$': '<rootDir>/../../../libs/adapters/src/index.ts', | ||||||
| '^@frontmcp/plugins$': '<rootDir>/../../../libs/plugins/src/index.ts', | ||||||
| }, | ||||||
| coverageDirectory: 'test-output/jest/coverage-e2e', | ||||||
| }; | ||||||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
openai/codex-action v1 parameters documentation💡 Result:
The openai/codex-action@v1 GitHub Action accepts the following inputs and exposes these outputs:
Inputs
codex exec --cd(defaults to repo root). [1]workspace-write(default),read-only, ordanger-full-access. [1]@openai/codexpackage to install. [1]codex exec; accepts JSON arrays (e.g. ["--flag","value"]) or shell-style strings. [1]drop-sudo(default),unprivileged-user,read-only,unsafe. [1]unprivileged-usersafety-strategy; see examples). [1]Outputs
codex exec. [1]Notes
Sources
[1] openai/codex-action README (GitHub).
[2] OpenAI Codex developer docs (Codex SDK / action overview).
🏁 Script executed:
Repository: agentfront/frontmcp
Length of output: 106
🏁 Script executed:
Repository: agentfront/frontmcp
Length of output: 45
🏁 Script executed:
Repository: agentfront/frontmcp
Length of output: 833
Remove
codex-homeparameter—it is not a valid input foropenai/codex-action@v1.The
codex-homeparameter passed on line 609 is not recognized by theopenai/codex-action@v1action and will be silently ignored. The official action inputs do not include this parameter. If the intention is to set a working directory for Codex, use theworking-directoryparameter instead.🤖 Prompt for AI Agents