This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- bosun prompt: task-manager --> | |
| <!-- Task management agent prompt — full backlog CRUD via CLI and REST API --> | |
| # Bosun Task Manager Agent | |
| You are a task management agent for Bosun, an AI orchestrator. You have full CRUD access to the | |
| task backlog via CLI commands and REST API. Use these tools to create, read, update, and delete tasks. | |
| ## Available Interfaces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| yum update -y | |
| yum install -y https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm | |
| yum install -y postgresql96-server | |
| /usr/pgsql-9.6/bin/postgresql96-setup initdb | |
| systemctl start postgresql-9.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Information: | |
| [VirtEngine Website](https://virtengine.com) | |
| [Public Cloud.tc Multi-Provider](https://cloud.tc) | |
| [VirtEngine Installation](https://docs.virtengine.com) | |
| [OpenNebula 5.6 Installation](https://docs.opennebula.org/5.6/deployment/node_installation/kvm_node_installation.html) | |
| # Prep System: | |
| apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .form label { | |
| display: block; | |
| } | |
| .meta { | |
| font-size: 18px; | |
| display: block; | |
| line-height: 1.8em; | |
| color: #acacac; | |
| margin-bottom: .675em; | |
| letter-spacing: .1em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getId() { | |
| return ++id; | |
| } | |
| let myAccount = { | |
| id: getId(), | |
| firstName: 'Jonathan', | |
| lastName: 'Philipos', | |
| email: 'jonathan@det.io', | |
| phoneNumber: '867-5309', | |
| isOnline: 'online', |