[Markdown] Tools for working with agents.
docs Rename repo to agent-assets
Update the title and every path reference from agent-skills to agent-assets. The name reflects the wider scope: skills, steering, and MCP servers, not skills alone.
README.org
@@ -1,4 +1,4 @@
1
Removed:
#+TITLE: agent-skills
1
Added:
#+TITLE: agent-assets
2
2
#+OPTIONS: toc:nil
3
3
4
4
Reusable Kiro agent assets, versioned in one place and shared across
@@ -19,7 +19,7 @@
19
19
* Layout
20
20
21
21
#+begin_example
22
Removed:
agent-skills/
22
Added:
agent-assets/
23
23
├── skills/
24
24
│ └── rail/ Skill — Rolling Action Item List
25
25
│ ├── SKILL.md
@@ -40,7 +40,7 @@
40
40
copy, so =git pull= in this repo updates every project at once.
41
41
42
42
#+begin_src sh
43
Removed:
ln -s ~/git/agent-skills/skills/rail ~/.kiro/skills/rail
43
Added:
ln -s ~/git/agent-assets/skills/rail ~/.kiro/skills/rail
44
44
#+end_src
45
45
46
46
Confirm the link:
@@ -59,7 +59,7 @@
59
59
Symlink a steering module the same way:
60
60
61
61
#+begin_src sh
62
Removed:
ln -s ~/git/agent-skills/steering/ste100 ~/.kiro/steering/ste100
62
Added:
ln -s ~/git/agent-assets/steering/ste100 ~/.kiro/steering/ste100
63
63
#+end_src
64
64
65
65
A skill loads on demand. A steering module with =inclusion: always=
@@ -72,7 +72,7 @@
72
72
reference, place your own copy at:
73
73
74
74
#+begin_example
75
Removed:
~/git/agent-skills/steering/ste100/references/ASD-STE100_ISSUE9.pdf
75
Added:
~/git/agent-assets/steering/ste100/references/ASD-STE100_ISSUE9.pdf
76
76
#+end_example
77
77
78
78
The steering rules in =ste100.md= work without the PDF. The PDF only
@@ -81,7 +81,7 @@
81
81
* Update
82
82
83
83
#+begin_src sh
84
Removed:
cd ~/git/agent-skills && git pull
84
Added:
cd ~/git/agent-assets && git pull
85
85
#+end_src
86
86
87
87
Every project that links a skill from this repo picks up the change on
@@ -100,5 +100,5 @@
100
100
Each skill carries its own test runner. For RAIL:
101
101
102
102
#+begin_src sh
103
Removed:
~/git/agent-skills/skills/rail/run-tests.sh
103
Added:
~/git/agent-assets/skills/rail/run-tests.sh
104
104
#+end_src