tarkennettu web ai ohjeita linkkien osalta.

This commit is contained in:
moilanik 2026-04-17 14:01:27 +03:00
parent 808ae1ad15
commit 881ccd79dd
2 changed files with 7 additions and 7 deletions

View File

@ -32,9 +32,11 @@ bash .ai/list-skills.sh
For browser-based AI systems loads skills from file: '.ai/skill-list.txt'. For browser-based AI systems loads skills from file: '.ai/skill-list.txt'.
When using this project in a browser-based AI, ensure the AI reads `root-skill` first. To avoid scanning the entire directory: Root skill: https://gitea.nikos-dev.keskikuja.site/niko/ai-superpower/raw/branch/main/.ai/skills/root-skill/SKILL.md
1. Use the `list-skills.sh` script to locate relevant skills.
2. Focus on the `name` and `description` metadata in each skill. Skill list: https://gitea.nikos-dev.keskikuja.site/niko/ai-superpower/raw/branch/main/.ai/skill-list.txt
When using this project in a browser-based AI, ensure the AI reads `root-skill` first. To avoid scanning the entire directory: Focus on the `name` and `description` metadata in each skill at skill-list.txt document.
## Bash Script: List Skills ## Bash Script: List Skills
A Bash script is provided to list all skills and their descriptions. See `.ai/list-skills.sh` for details. A Bash script is provided to list all skills and their descriptions. See `.ai/list-skills.sh` for details.

View File

@ -45,10 +45,8 @@ ALL documentation files must be written in **English**. You may communicate in t
When you need to read a skill or a file listed in .ai/skill-list.txt, construct the URL using the following logic: When you need to read a skill or a file listed in .ai/skill-list.txt, construct the URL using the following logic:
1. Base URL: https://gitea.nikos-dev.keskikuja.site/niko/ai-superpower/src/branch/main/ 1. Base URL: https://gitea.nikos-dev.keskikuja.site/niko/ai-superpower/raw/branch/main/
2. File Path: Combine the Base URL with the relative path of the skill 2. File Path: Combine the Base URL with the relative path of the skill
- Example: Skill git is located at .ai/skills/git/SKILL.md - Example: Skill git is located at .ai/skills/git/SKILL.md
- Constructed URL: https://gitea.nikos-dev.keskikuja.site/niko/ai-superpower/src/branch/main/.ai/skills/git/SKILL.md - Constructed URL: https://gitea.nikos-dev.keskikuja.site/niko/ai-superpower/raw/branch/main/.ai/skills/git/SKILL.md
3. Raw Access (Optional): If direct parsing fails, try replacing /src/branch/main/ with /raw/branch/main/ to get the plain text version.