New Entity AI

Draft 1.0:
Index


Installation



Purpose: Enable New Entity AI™

Additional Usage: Add the generic modular components to MAINTAINME in order to enable New Entity AI™

Release overview:



Release Version Name Release Version Date
Version 1.0 Draft: Preview 12/31/2023

To enable New Entity AI™, you will need to perform 3 steps.

1.) source a profile at login. It's recommended to use the standard /etc/profile convention for this.
2.) source a user-specific profile at user-login. It's recommended to use the standard /home/$USER/.shellrc convention for this.
3.) Make the directory /NOVASTORE and /NOVASTORE/MAINTAINME to house the New Entity AI™ backend.
              
###############################################################################
## COPYRIGHT (C) 2016-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2016/01/02
## INSTANCE: /etc/profile
## MODIFIED: 2024/01/13
## OVERVIEW: Establish a shell profile, perform desired profile routines, and
## import special instances, such as MAINTAINME
## HISTORY: VERSION 1.1
## -> 2016/01/02 (VERSION 0.1)
## -> 2017/03/24 (VERSION 0.2)
## -> 2018/06/18 (VERSION 0.3)
## -> 2019/10/01 (VERSION 0.4)
## -> 2020/10/20 (VERSION 0.5)
## -> 2022/01/01 (VERSION 0.6)
## -> 2022/09/04 (VERSION 0.7)
## -> 2023/10/03 (VERSION 0.8)
## -> 2023/11/10 (VERSION 0.9)
## -> 2023/12/06 (VERSION 1.0)
## -> 2024/01/13 (VERSION 1.1) Production
###############################################################################
## Load profiles from /etc/profile.d
if [ -d "/etc/profile.d/" ]; then
 ## Load and unset profiles
 for profile in /etc/profile.d/*.sh; do
  if [ -f $profile ]; then
   . "$profile"
  else
   :
  fi
 done
 ## Free up profile
 unset profile
else
 echo -e "No /etc/profile.d/ directory was located. Can't source additional shell profiles."
fi

## Generic PS1
export PS1='\[\033[1;60m\]\u:\[\033[1;24m\] \W\[\033[0;31m\] \$ \[\033[0m\]'

###############################################################################
## Source global bash config if you want to utilize it as an extension
if [ -n "$PS1" ]; then
 if [ -n "$BASH" ]; then
  if [ -f "/etc/bash.bashrc" ]; then
    . /etc/bash.bashrc
  else
   echo -e "You need to establish /etc/bash.bashrc to enable bash."
  fi
 else
  echo -e "'$BASH' is not set. Set it to enable bash."
 fi
else
 echo -e "'$PS1' is not set. You most likely are running in a strict posix shell."
fi

###############################################################################
## Generic: Required Values
###############################################################################
## Define root values
## Provide default MAINTAINME and additional dugout structures
export PATH_MAINTAINME=/NOVASTORE/MAINTAINME
export PATH_DUGOUT="${PATH_MAINTAINME}/dugout"
## Provide dynamic import paths for automated root routines
export STATIC_VARIABLES=/static_variables.dugout
export SYSTEM_PATHS_DUGOUT=/system_paths.dugout
export SYSTEM_SHORTCUTS=/shortcut_id.dugout
export GRAPHICAL_VALUES=/graphics_virtual.dugout
export HIGHLIGHT_KEYWORD=/highlight_keyword.dugout
export EMULATOR_ART=/emulator_art.dugout
## Configure desired instances of MAINTAINME
export PATH_MAINTAINME_CONFIGURE="${PATH_MAINTAINME}/configure"

## Source All of your static environment variables
. "${PATH_DUGOUT}/${STATIC_VARIABLES}"
## Provide generic highlighter values
. "${PATH_DUGOUT}/${HIGHLIGHT_KEYWORD}"
## Provide emulator visual elements
. "${PATH_DUGOUT}/${EMULATOR_ART}"
## Source All of your defined system paths
. "${PATH_DUGOUT}/${SYSTEM_PATHS_DUGOUT}"
## Source All of your shortcuts
. "${PATH_DUGOUT}/${SYSTEM_SHORTCUTS}"
## Source All of your monitor dependent values
. "${PATH_DUGOUT}/${GRAPHICAL_VALUES}"
## Source the monitors
. "${PATH_MAINTAINME_CONFIGURE}/monitors.sh"

###############################################################################
## Options
###############################################################################
## Set our umask in legacy systems that don't set it by default
umask 022
## UNSET TERMCAP because it's outdated.
unset TERMCAP
## UNSET MANPATH: Use Man instead of MANPATH
unset MANPATH

              
             

Additionally, you will need to provide a user-specific profile for each user of your system. In this case, we will use the 'standard' user's shell profile as an example.

              

###############################################################################
## COPYRIGHT 2022-2023 New Entity Operations Inc.
##
## "${PATH_TO_USER}"/.shellrc
## LAST MODIFIED: 2023/12/26
##
## If you would like to run additional routines per $PATH_DUGOUT/* script, source
## them conditionally and add them as needed for each system-user.
###############################################################################
# Define your allowed user variables
###############################################################################
### Source the standard shell environment
#if [ -f "${PATH_DUGOUT}"/shellrc_standard.dugout ]; then
# . "${PATH_DUGOUT}"/shellrc_standard.dugout
#fi
. "${PATH_DUGOUT}"/shellrc_standard.dugout

## Manual Source for posix shells
if [ -z "${PS1}" ]; then
 #printf "PS1 is-> %s\n" "${PS1}"
 #. /NOVASTORE/MAINTAINME/dugout/ALL_static_variables.dugout
 #. /NOVASTORE/MAINTAINME/dugout/highlight_keyword.dugout
 #. /NOVASTORE/MAINTAINME/dugout/system_paths.dugout
 STRICT_MODE=1
else
 #echo "Running disk_ops_id_custom in a non-posix shell."
 #printf "PS1 is-> %s\n" "${PS1}"
 STRICT_MODE=0
fi

#test_source() {
# if [ -z "$BACKUP_ARCHIVE_FROM" ]; then
#  echo "Your generic source check location failed. Please make sure your targets are properly loaded/sourced."
# else
#  echo "Your generic source check passed with-> ${BACKUP_ARCHIVE_FROM}"
# fi
#}

###############################################################################
# Custom Environment visuals
###############################################################################
if [ $- == "${DEFAULT_SHELL_ENV_SLUG}" ]; then
 printf "###############%b########################################%b\n" "${DEFAULT_COLOR_LINE}" "${DEFAULT_COLOR}"
 printf "#   STANDARD  #%b                                       #\n" "${DEFAULT_COLOR}"
 printf "#             #%b Shell: %s-> `date +%Y/%m/%d`           #\n" "${DEFAULT_COLOR}" "${USER}"
 printf "#      X      #%b Time: `date +%T`                        #\n" "${DEFAULT_COLOR}"
 printf "#             #%b Options: Strict-Mode-> %s              #\n" "${DEFAULT_COLOR}" "${STRICT_MODE}"
 printf "#     OPS     #%b                                       #\n" "${DEFAULT_COLOR}"
 printf "###############%b########################################%b\n" "${DEFAULT_COLOR_LINE}" "${DEFAULT_COLOR}"
 $($LS_COLOR) && return
elif [ $- != "${INTERACTIVE_SLUG}" ]; then
 printf "########################################\n"
 printf "%s's shell started: %s \n" "${USER}" "`date +%Y/%m/%d`"
 printf "Options: custom\n"
 printf "########################################\n" && return
elif [ $- == "${INERACTIVE_SLUG}" ]; then
 printf "Interactive shell: Extend the logic now...\n"
else
 printf "Shell environment error: Falling back...\n" && return
fi


              
             

You are now able to advance to the general MAINTAINME section.