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
4 changes: 2 additions & 2 deletions .github/workflows/validate-skills.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Validate Skills Schema

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
validate:
Expand Down
6 changes: 6 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": [],
"singleQuote": true,
"useTabs": true
}
14 changes: 3 additions & 11 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"branches": [
"main"
],
"branches": ["main"],
"plugins": [
[
"@semantic-release/commit-analyzer",
Expand All @@ -22,10 +20,7 @@
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}
],
Expand All @@ -39,10 +34,7 @@
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
]
"assets": ["package.json", "package-lock.json"]
}
],
"@semantic-release/github"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ Re-run this command later if you want to get the latest updates from us.
## Available Skills

### [Harper Best Practices](harper-best-practices/SKILL.md)

Comprehensive guidelines for building, extending, and deploying Harper applications. Covers:

- Schema design and relationships.
- Automatic REST and WebSocket APIs.
- Custom resources and table extensions.
Expand Down
15 changes: 3 additions & 12 deletions commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [
0,
'never',
],
'body-max-line-length': [
0,
'never',
],
'footer-max-line-length': [
0,
'never',
],
'subject-case': [0, 'never'],
'body-max-line-length': [0, 'never'],
'footer-max-line-length': [0, 'never'],
},
};
Loading