Skip to content

Commit c5aab21

Browse files
committed
added section for aesh-extensions
1 parent add23ab commit c5aab21

4 files changed

Lines changed: 542 additions & 1 deletion

File tree

content/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,17 @@ implementation 'org.aesh:aesh:1.7'
251251
implementation 'org.aesh:readline:3.5'
252252
```
253253

254+
**Extensions (Optional - Ready-made commands):**
255+
```groovy
256+
implementation 'org.aesh:aesh-extensions:1.7'
257+
```
258+
254259
## Documentation
255260

256261
- **[Getting Started Guide](/docs)** - Choose the right library and get started
257262
- **[Æsh Documentation](/docs/aesh)** - Complete command framework reference
258263
- **[Readline Documentation](/docs/readline)** - Terminal API reference
264+
- **[Extensions Library](/docs/aesh/extensions)** - Pre-built commands (ls, cd, cat, etc.)
259265
- **[Examples Repository](https://github.com/aeshell/aesh-examples)** - Working code examples
260266

261267
## Requirements
@@ -267,6 +273,7 @@ implementation 'org.aesh:readline:3.5'
267273

268274
- **GitHub Repository:** [github.com/aeshell/aesh](https://github.com/aeshell/aesh)
269275
- **Examples Repository:** [github.com/aeshell/aesh-examples](https://github.com/aeshell/aesh-examples)
276+
- **Extensions Repository:** [github.com/aeshell/aesh-extensions](https://github.com/aeshell/aesh-extensions)
270277
- **Issue Tracker:** [github.com/aeshell/aesh/issues](https://github.com/aeshell/aesh/issues)
271278
- **Discussions:** [github.com/aeshell/aesh/discussions](https://github.com/aeshell/aesh/discussions)
272279

content/docs/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ readline.readline(connection, "prompt> ", input -> {
148148
- [Converters](/docs/aesh/converters) - Type conversion
149149
- [Activators](/docs/aesh/activators) - Conditional options
150150
- [Renderers](/docs/aesh/renderers) - Custom output formatting
151+
- [Extensions Library](/docs/aesh/extensions) - Ready-made commands (ls, cd, cat, etc.)
151152

152153
---
153154

content/docs/aesh/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ Ready to build your CLI application?
183183
1. **[Installation](installation)** - Add Æsh to your project
184184
2. **[Getting Started](getting-started)** - Create your first command
185185
3. **[Command Definition](command-definition)** - Learn about command structure
186-
4. **[Examples](examples)** - Explore complete working examples
186+
4. **[Extensions Library](extensions)** - Use ready-made commands (ls, cd, cat, etc.)
187+
5. **[Examples](examples)** - Explore complete working examples
187188

188189
## Æsh vs Æsh Readline
189190

0 commit comments

Comments
 (0)