fix: update package name and URLs to reflect new ownership

This commit is contained in:
Lauren ten Hoor
2026-02-12 00:32:35 +08:00
parent e4b54646da
commit a4312c886a
3 changed files with 14 additions and 9 deletions

View File

@@ -44,6 +44,6 @@ jobs:
run: | run: |
echo "## ✅ Published to npm" >> $GITHUB_STEP_SUMMARY echo "## ✅ Published to npm" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY
echo "**Package:** \`@openclaw/devclaw\`" >> $GITHUB_STEP_SUMMARY echo "**Package:** \`@laurentenhoor/devclaw\`" >> $GITHUB_STEP_SUMMARY
echo "**Version:** \`$(node -p "require('./package.json').version")\`" >> $GITHUB_STEP_SUMMARY echo "**Version:** \`$(node -p "require('./package.json').version")\`" >> $GITHUB_STEP_SUMMARY
echo "**URL:** https://www.npmjs.com/package/@openclaw/devclaw" >> $GITHUB_STEP_SUMMARY echo "**URL:** https://www.npmjs.com/package/@laurentenhoor/devclaw" >> $GITHUB_STEP_SUMMARY

View File

@@ -2,9 +2,9 @@
## Package Details ## Package Details
- **Name:** `@openclaw/devclaw` - **Name:** `@laurentenhoor/devclaw`
- **npm Profile:** https://www.npmjs.com/settings/laurentenhoor/packages - **npm Profile:** https://www.npmjs.com/settings/laurentenhoor/packages
- **Package URL:** https://www.npmjs.com/package/@openclaw/devclaw - **Package URL:** https://www.npmjs.com/package/@laurentenhoor/devclaw
## Prerequisites ## Prerequisites
@@ -148,18 +148,18 @@ git push && git push --tags
After publishing, verify: After publishing, verify:
1. **Package appears on npm:** 1. **Package appears on npm:**
- https://www.npmjs.com/package/@openclaw/devclaw - https://www.npmjs.com/package/@laurentenhoor/devclaw
2. **Test installation:** 2. **Test installation:**
```bash ```bash
# In a temporary directory # In a temporary directory
mkdir test-install && cd test-install mkdir test-install && cd test-install
npm install @openclaw/devclaw npm install @laurentenhoor/devclaw
``` ```
3. **Check package contents:** 3. **Check package contents:**
```bash ```bash
ls -la node_modules/@openclaw/devclaw/ ls -la node_modules/@laurentenhoor/devclaw/
``` ```
## Troubleshooting ## Troubleshooting

View File

@@ -1,14 +1,18 @@
{ {
"name": "@openclaw/devclaw", "name": "@laurentenhoor/devclaw",
"version": "0.1.0", "version": "0.1.0",
"description": "Multi-project dev/qa pipeline orchestration for OpenClaw", "description": "Multi-project dev/qa pipeline orchestration for OpenClaw",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"author": "laurentenhoor", "author": "Lauren ten Hoor <laurentenhoor@gmail.com>",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/laurentenhoor/devclaw.git" "url": "https://github.com/laurentenhoor/devclaw.git"
}, },
"bugs": {
"url": "https://github.com/laurentenhoor/devclaw/issues"
},
"homepage": "https://github.com/laurentenhoor/devclaw#readme",
"keywords": [ "keywords": [
"openclaw", "openclaw",
"openclaw-plugin", "openclaw-plugin",
@@ -27,6 +31,7 @@
] ]
}, },
"main": "./dist/index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [ "files": [
"dist/", "dist/",
"roles/", "roles/",