-
Notifications
You must be signed in to change notification settings - Fork 0
chore: AGENTS.md compliance and project standards setup #1
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
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| name: verify | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| verify: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: lts/* | ||
| cache: "npm" | ||
| - run: npm ci | ||
| - run: npm run verify | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| node_modules | ||
| .DS_Store | ||
| package-lock.json | ||
| CLAUDE.md |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "semi": true, | ||
| "singleQuote": false, | ||
| "tabWidth": 2, | ||
| "trailingComma": "es5" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| // Agent skill entry point |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "name": "@metyatech/skill-user-proxy", | ||
| "version": "1.0.0", | ||
| "description": "Agent skill for user proxy review", | ||
| "type": "module", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "verify": "npm run format:check", | ||
| "format": "prettier --write .", | ||
| "format:check": "prettier --check ." | ||
| }, | ||
|
Comment on lines
+7
to
+11
|
||
| "keywords": [ | ||
| "agent-skill" | ||
| ], | ||
| "author": "metyatech", | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "prettier": "^3.0.0" | ||
| } | ||
| } | ||
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.
The workflow uses
npm cion line 18, but sincepackage-lock.jsonis listed in.gitignore(and thus not committed),npm ciwill fail because it strictly requires a committed lockfile. Either changenpm citonpm install, or removepackage-lock.jsonfrom.gitignoreand commit the lockfile.