.
authorThomas Walker Lynch <eknp9n@reasoningtechnology.com>
Wed, 19 Nov 2025 16:41:00 +0000 (16:41 +0000)
committerThomas Walker Lynch <eknp9n@reasoningtechnology.com>
Wed, 19 Nov 2025 16:41:00 +0000 (16:41 +0000)
tool/skeleton_compare_source/temp.txt [deleted file]

diff --git a/tool/skeleton_compare_source/temp.txt b/tool/skeleton_compare_source/temp.txt
deleted file mode 100644 (file)
index fb4aebf..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-Perhaps we are now ready to summit.
-
-We will add the module  'command.py'
-
-functions:  help, 
-
-The top level function, `dispatch`, will take the <has_other> list. It will then dispatch a distinct function for each command.
-
-Each command specific function will use the functions we have written to accomplish the work of the command. See notes below.
-
-```
-Usage:
-  check <command>* [<other>]
-
-Where:
-  <command>   :: <help> | <no_other> | <has_other>
-
-  <help>      :: version | help | usage
-  <no_other>  :: environment
-  <has_other> :: structure | import | export | suspicious | addendum | all
-```
-The meaning of these commands:
-
-structure: differences in directory structure, directories in  A - B
-
-import:  a list of shell copy commands that would copy newer nodes in B into A, or nodes that are not in B into A. Editing this list, then running the shell commands will be helpful for updating the Harmony skeleton (A).
-
-export: a list of shell copy commands that would copy newer nodes in A into B, or nodes in A that are not in B. Comes from the older list.  Editing this list, then running the shell commands will be helpful for keeping the skeleton in B up to date.
-
-suspicious:  basically the InBetween list.  Why did the user put things into areas that are part of the skeleton instead of under leaf directories?  tools, source code, tests, etc. all have leaf directories for adding things to.  What are these files?  Perhaps proposed additions to the skeleton?  Perhaps bad usage of the skeleton (in general use scenarios this is more likely).
-
-addendum: this is the work that has been added to the project in proper places.  It is interesting to see the work that has been done on the project.
-
-all: runs structure, import, export, suspicious, and addendum
-
-it seems I left an analysis out, but it doesn't come to mind at the moment.  Can you think of it?