Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
64a7f2d
feat: Add cq:template support and property validation (v2.0.0)
sureshaski-hue Dec 9, 2025
9f5c20b
Added workflow operations changes
sureshaski-hue Dec 9, 2025
db86bc3
Update .gitignore to exclude test files
sureshaski-hue Dec 9, 2025
634b657
Delete not implemented/stubbed tools
otarsko Jan 30, 2026
e6b0717
Delete references to source repo
otarsko Jan 30, 2026
002d085
Delete stubbed tool
otarsko Jan 30, 2026
4c72024
Delete stubbed tools
otarsko Jan 30, 2026
95cc4a2
Fix tree activation
otarsko Jan 30, 2026
ba2cb8a
Adjust docs for getPageTextContent
otarsko Jan 30, 2026
016e5d2
Finish implementation for the fetchLanguageMasters
otarsko Jan 30, 2026
08f0351
Rough reimplementation of fetchAvailableLocales
otarsko Jan 30, 2026
e5db66a
Update running instructions
otarsko Jan 30, 2026
69a4e3d
Clarify getTemplates tool functionality
otarsko Feb 4, 2026
2464372
Clarify executeJCRQuery tool functionality
otarsko Feb 4, 2026
e70c71e
Delete "uploadAsset". Adjust "addComponent" to support more cases.
otarsko Feb 5, 2026
5887d42
Clarify "convertComponents" functionality, delete "undoChanges" as it…
otarsko Feb 5, 2026
a270423
Delete validateComponent as its goal is not fully clear and it seems …
otarsko Feb 5, 2026
b82db89
Revert table formatting
otarsko Feb 6, 2026
90aab9c
Clarify required node version
otarsko Feb 6, 2026
75626ad
feat: update contributing docs
otarsko Feb 6, 2026
5b746ee
Cleaned up changelog.
otarsko Feb 12, 2026
beca8af
docs: add copyright, align package.json, COC, README with the template
otarsko Feb 12, 2026
e51acbf
docs: update 2 badges to point to current repo
otarsko Feb 12, 2026
eeedb75
docs: update installation instructions as prep to release and publishing
otarsko Feb 12, 2026
e00e710
docs: update running instruction
otarsko Mar 26, 2026
7b4cfd9
Merge pull request #1 from Netcentric/cleanup-and-fixes
otarsko Mar 26, 2026
4e08bfb
Merge branch 'main' into develop
otarsko Mar 26, 2026
3c491ee
ci: fix codeql step
otarsko Mar 26, 2026
1649438
Merge pull request #4 from Netcentric/feat/bring-master-commits-to-de…
otarsko Mar 26, 2026
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
2 changes: 0 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,5 @@ jobs:
with:
languages: ${{ matrix.language }}

- run: npm run build --if-present

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Release
uses: cycjimmy/semantic-release-action@v4
with:
dry_run: true
dry_run: false
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
Expand Down
152 changes: 146 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
logs
*.log


# IDE
.project
.classpath
Expand All @@ -13,10 +14,6 @@ logs
.vscode/
.history

# OS
.DS_Store
*.swp

# Node related files
node_modules/
node/
Expand All @@ -25,8 +22,151 @@ typings
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.stylelintcache
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# env
# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
\.env
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

/dist/*

# IDE files
*.iml
.idea/
.vscode/
.cursor/
*.swp
*.swo
*~

# AEM connection and auth files
.aem-connection.json
.aem-oauth-tokens.json

# Backup directories
.backup/

# Test files
TEST_RESULTS.md
INTERACTIVE_TESTING.md
comprehensive-test.js
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22.16.0
Loading
Loading