Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Your commands are badly formed. You haven't read an image before you "-auto-orient", so what do you expect that command to do?
Similarly, you have a "-resize" before reading the checkerboard image, so what do you expect the "-resize" to do?
Commands should be in the logical order eg read an image, process it, write it. Or read in an image and process it, read another and process it, composite them together, then write the output.
As snibgo said, you have some syntax errors. IM 6 is forgiving, but not IM 7. So you should learn to use the proper syntax structure. Read the input, then follow with settings, then follow that with operators. Parenthesis typically isolate processing. So put settings and operators inside the parentheses if you want them to act on the images in the parentheses.