Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/claude-issue-similar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: anthropics/claude-code-action@6337623ebba10cf8c8214b507993f8062fd4ccfb # v1.0.22
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
allowed_non_write_users: "*"
claude_args: '--model opus --allowedTools "Bash(gh issue view:*),Bash(gh issue comment:*),Bash(gh search:*)"'
prompt: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/claude-issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: anthropics/claude-code-action@6337623ebba10cf8c8214b507993f8062fd4ccfb # v1.0.22
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
allowed_non_write_users: "*"
claude_args: '--model opus --allowedTools "Bash(gh label list:*),Bash(gh issue view:*),Bash(gh issue edit:*),Bash(gh search:*)"'
prompt: |
Expand Down
163 changes: 163 additions & 0 deletions website/client/src/public/schemas/1.10.2/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"input": {
"type": "object",
"properties": {
"maxFileSize": {
"type": "number"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"properties": {
"filePath": {
"type": "string"
},
"style": {
"type": "string",
"enum": [
"xml",
"markdown",
"json",
"plain"
]
},
"parsableStyle": {
"type": "boolean"
},
"headerText": {
"type": "string"
},
"instructionFilePath": {
"type": "string"
},
"fileSummary": {
"type": "boolean"
},
"directoryStructure": {
"type": "boolean"
},
"files": {
"type": "boolean"
},
"removeComments": {
"type": "boolean"
},
"removeEmptyLines": {
"type": "boolean"
},
"compress": {
"type": "boolean"
},
"topFilesLength": {
"type": "number"
},
"showLineNumbers": {
"type": "boolean"
},
"truncateBase64": {
"type": "boolean"
},
"copyToClipboard": {
"type": "boolean"
},
"includeEmptyDirectories": {
"type": "boolean"
},
"includeFullDirectoryStructure": {
"type": "boolean"
},
"tokenCountTree": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
}
]
},
"git": {
"type": "object",
"properties": {
"sortByChanges": {
"type": "boolean"
},
"sortByChangesMaxCommits": {
"type": "number"
},
"includeDiffs": {
"type": "boolean"
},
"includeLogs": {
"type": "boolean"
},
"includeLogsCount": {
"type": "number"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"include": {
"type": "array",
"items": {
"type": "string"
}
},
"ignore": {
"type": "object",
"properties": {
"useGitignore": {
"type": "boolean"
},
"useDotIgnore": {
"type": "boolean"
},
"useDefaultPatterns": {
"type": "boolean"
},
"customPatterns": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"properties": {
"enableSecurityCheck": {
"type": "boolean"
}
},
"additionalProperties": false
},
"tokenCount": {
"type": "object",
"properties": {
"encoding": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"title": "Repomix Configuration",
"description": "Schema for repomix.config.json configuration file"
}