content-eval-tool
v1.0.3
Published
CLI tool to evaluate content for CRGA
Downloads
4
Readme
Content Evaluation Tool
A tool designed to evaluate and analyze content for CRGA
Installation
To install the CLI globally on your system, run the following command in the terminal:
npm install -g content-eval-toolGetting Started
Create a new folder for your evaluation project:
Run the tool by executing following command in the terminal
cet- Configure your environment (organization, pipelines, sources):
cet configure- Evaluate your content:
cet evaluateCommands
cet <command> [options]
| Command | Description |
|-------------|----------------------------------------------|
| configure | Set up organization, pipelines, and sources |
| evaluate | Run content quality evaluation |
| report | Generate a report of the evaluation test |
| help | Show help and examples |
Examples
cet configure => Start interactive configuration
cet configure -s => Show current config
cet evaluate => Evaluate current content setup
cet report => Generate a report of the evaluation testDevelopment Conventions
This project uses conventional commits and branch naming:
Prefixes
test: Adding tests or correcting existing testsfeat: A new featurefix: A bug fixperf: A code change that improves performancechore: Changes which don't change source code or testsrefactor: A code change that neither fixes a bug nor adds a featurestyle: Changes that do not affect the meaning of the codebuild: Changes that affect the build system or external dependenciesci: Changes to CI configuration files and scriptsdocs: Documentation only changesrevert: Revert something
Naming Style
- Use camelCase for all naming conventions (variables, functions, tests, etc.)
Branch naming:
test/wordCountfeat/progressBarfix/documentBodyFetchError
Commit messages:
test: add unit tests for search APIfeat: implement search results filteringdocs: add usage examples for search API
