diff --git a/README.md b/README.md index df0e670..e265696 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Codex will choose the shortest safe path, normally by running `scripts/fetch-sal Install the skill, then ask Codex for Knowledge One View data or an output based on it. If authentication is needed, Codex opens Chrome so you can complete the Oracle login flow. -IMPORTANT: Chrome is mandatory for authentication, especially for SSO or MFA. After the session is valid, Codex continues browserless: it calls the Oracle DV backend APIs directly, receives the backend data, applies the requested filters or intent, and returns the answer or creates the requested output. Chrome is reopened only when the saved session expires or needs to be refreshed. +IMPORTANT: Chrome is mandatory for authentication (SSO and MFA). After the session is valid, Codex continues browserless: it calls the Oracle DV backend APIs directly, receives the backend data, applies the requested filters or intent, and returns the answer or creates the requested output. Chrome is reopened only when the saved session expires or needs to be refreshed. ## Installation From Git @@ -57,30 +57,40 @@ cd ~/.codex/skills git clone https://git.tech-lad.com.br/marceloarbore/knowledge-one-view-cli.git ``` -Create a branch for you before editing (so you can contribute back to the repo later on): +Ask CODEX to install and test the skill (after it you will ahve to bestart CODEX) + +```bash +CODEX: Please install the knowledge-one-view-cli skill (already in your skill folder) and test it +``` + +After installing or updating the skill, restart Codex or reload the session so the skill list is refreshed. + + +OTHER USEFUL COMMANDS: + +Optional: Create a branch for you before editing it locally (so you can contribute back to the repo later on): ```bash cd ~/.codex/skills/knowledge-one-view-cli git checkout -b feature/my-name ``` -If it already exists, update it first: +Optional: In case you want to downlaod the last bersion of the skill, use pull command ```bash cd ~/.codex/skills/knowledge-one-view-cli git pull origin main -git checkout -b feature/my-change ``` -Ask CODEX to review and test the installation +Optional: In case you have broke the skill and want to restore to original from server, use reset command (caution: you will lose local updates) ```bash -CODEX: Please review and test the installation of the knowledge-one-view-cli skill +cd ~/.codex/skills/knowledge-one-view-cli +git fetch origin main +git reset --hard origin/main ``` -After installing or updating the skill, restart Codex or reload the session so the skill list is refreshed. - -Live data access requires permission to access the Sales Intelligence Knowledge One View workbook at `salesintelligence-dv.oracle.com`. +OBS: Live data access requires manager permission to access the Sales Intelligence Knowledge One View workbook. ## Notes For Contributors